Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > What does this stack trace mean?

Reply
Thread Tools

What does this stack trace mean?

 
 
=?Utf-8?B?RGF2aWQgVGhpZWxlbg==?=
Guest
Posts: n/a
 
      01-14-2007
2007-01-13 18:40:56,443 [7] ac.server ERROR Error - An unexpected exception for
user: admin
System.NullReferenceException: Object reference not set to an instance of an
obj
ect.
at Windward.Page_Load(Object sender, EventArgs e)
at System.Web.Util.CalliHelper.EventArgFunctionCaller (IntPtr fp, Object
o, Ob
ject t, EventArgs e)
at System.Web.Util.CalliEventHandlerDelegateProxy.Cal lback(Object sender,
Eve
ntArgs e)
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoin
t, Boolean includeStagesAfterAsyncPoint)

None of the stack is my code so I have no idea how to figure this out. What
is happening is I am trying to go to default.aspx and I get the Forms loging
screen. I enter that and hit submit and then this happens.

I did get some test code in there that logs in my user and that does succeed.

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm


 
Reply With Quote
 
 
 
 
Karl Seguin
Guest
Posts: n/a
 
      01-14-2007
DO you have a page called Windward? you have a null reference in your
page_load event.

Karl

--
http://www.openmymind.net/
http://www.codebetter.com/


"David Thielen" <> wrote in message
news:0FE6A11D-F297-499F-A3A5-...
> 2007-01-13 18:40:56,443 [7] ac.server ERROR Error - An unexpected
> exception for
> user: admin
> System.NullReferenceException: Object reference not set to an instance of
> an
> obj
> ect.
> at Windward.Page_Load(Object sender, EventArgs e)
> at System.Web.Util.CalliHelper.EventArgFunctionCaller (IntPtr fp, Object
> o, Ob
> ject t, EventArgs e)
> at System.Web.Util.CalliEventHandlerDelegateProxy.Cal lback(Object
> sender,
> Eve
> ntArgs e)
> at System.Web.UI.Control.OnLoad(EventArgs e)
> at System.Web.UI.Control.LoadRecursive()
> at System.Web.UI.Control.LoadRecursive()
> at System.Web.UI.Page.ProcessRequestMain(Boolean
> includeStagesBeforeAsyncPoin
> t, Boolean includeStagesAfterAsyncPoint)
>
> None of the stack is my code so I have no idea how to figure this out.
> What
> is happening is I am trying to go to default.aspx and I get the Forms
> loging
> screen. I enter that and hit submit and then this happens.
>
> I did get some test code in there that logs in my user and that does
> succeed.
>
> --
> thanks - dave
> david_at_windward_dot_net
> http://www.windwardreports.com
>
> Cubicle Wars - http://www.windwardreports.com/film.htm
>
>


 
Reply With Quote
 
 
 
 
Gaurav Vaish \(MasterGaurav\)
Guest
Posts: n/a
 
      01-14-2007
> System.NullReferenceException: Object reference not set to an instance of
> an
> obj
> ect.
> at Windward.Page_Load(Object sender, EventArgs e)
> at System.Web.Util.CalliHelper.EventArgFunctionCaller (IntPtr fp, Object
> o, Object t, EventArgs e)


You are trying to make use of a variable that is still not instantiated.
Page under consideration is Windward.aspx


--
Happy Hacking,
Gaurav Vaish | www.mastergaurav.com
www.edujini-labs.com
http://eduzine.edujinionline.com
-----------------------------------------


 
Reply With Quote
 
=?Utf-8?B?RGF2aWQgVGhpZWxlbg==?=
Guest
Posts: n/a
 
      01-14-2007
Thank you both of you. No page named windward.aspx but the master page is
windward.master and it has a code behind that had the problem. I never
thought of looking there until your posts because I forgot it had code.

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Why does std::stack::pop() not throw an exception if the stack is empty? Debajit Adhikary C++ 36 02-10-2011 08:54 PM
C/C++ compilers have one stack for local variables and return addresses and then another stack for array allocations on the stack. Casey Hawthorne C Programming 3 11-01-2009 08:23 PM
No trace messages using Diagnostics.Trace McGeeky ASP .Net 0 02-01-2006 02:49 PM
How to redirect output from Diagnostics.Trace to Page.Trace? Matthias S. ASP .Net 1 11-30-2005 09:01 AM
Trace: Can anyone suggest a good tool to catch trace messages? Rukmal Fernando ASP .Net 4 10-27-2003 09:03 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57