another server error

D

Daniel Rimmelzwaan

I got the following server error, does anybody have an idea of what it
means?


Server Error in '/CreateJobFromFile' Application.


----------------------------------------------------------------------------
----


Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.

Source Error:


An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.



Stack Trace:


[NullReferenceException: Object reference not set to an instance of an
object.]
CreateJobFromFile.CreateJobFromFile.Page_Load(Object sender, EventArgs e)
in c:\inetpub\wwwroot\createjobfromfile\createjobfromfile.aspx.cs:40
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +29
System.Web.UI.Page.ProcessRequestMain() +724



----------------------------------------------------------------------------
 
K

Kevin Spencer

It means that on line 40 of
c:\inetpub\wwwroot\createjobfromfile\createjobfromfile.aspx.cs an error
occurred due to referencing an Object that doesn't exist. I would check that
line of code to see what object(s) it references, and figure out why at
least one of them was not initialized.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top