473,698 Members | 2,300 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

An unhandled exception has occurred. / Exception message: Object reference not set

3 New Member
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 11/18/2009 3:03:53 PM
Event time (UTC): 11/18/2009 9:33:53 AM
Event ID: ef3014ea80424b0 0b1bc2e7095fffe 4c
Event sequence: 34707
Event occurrence: 17
Event detail code: 0

Process information:
Process ID: 3008
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWO RK SERVICE

Exception information:
Exception type: NullReferenceEx ception
Exception message: Object reference not set to an instance of an object.

Request information:
Request URL: http://indoserv.com/pages/indcoe/export/indjobcosting/indcoejobcostin gdetailsfrpg.as px?q=cGFnZWlkfE FnSW5kQ29lSm9iQ 29zdGluZ0RldGFp bHNGclBnJmFjdGl vbmlkfE9wZW5BZ0 luZENvZUpvYkNvc 3RpbmdEZXRhaWxz JmFjdGlvbmNyaXR lcmlhfCU1YkFnSW 5kQ29lSm9iQ29zd GluZ0RldGFpbHMl NWQuJTViRm9ybUl kJTVkJTNkJzE1Nz Q0OCcmbmV4dGFjd GlvbmNyaXRlcmlh fCZJc1BvcHVwUGF nZXxmYWxzZSZwZ2 NoaWR8MWMyYWMzM jkzNDM5NGQ5Mjg4 OTYxYjMxMzllNDU 5MWRfZDJreGl6ND V5MXdnc2E0NWhpd TRsejQ1Jg==-fqW1O0SE9IQ=&w= ;;;;;
Request path: /pages/agindcoe/oceanexport/agindjobcosting/agindcoejobcost ingdetailsfrpg. aspx
Is authenticated: True
Authentication Type: Forms
Thread account name: NT AUTHORITY\NETWO RK SERVICE

Thread information:
Thread ID: 12
Thread account name: NT AUTHORITY\NETWO RK SERVICE
Is impersonating: False
Stack trace: at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.C ontrol.UnloadRe cursive(Boolean dispose)
at System.Web.UI.P age.UnloadRecur sive(Boolean dispose)
at System.Web.UI.P age.ProcessRequ estCleanup()
at System.Web.UI.P age.ProcessRequ est(Boolean includeStagesBe foreAsyncPoint, Boolean includeStagesAf terAsyncPoint)
at System.Web.UI.P age.ProcessRequ est()
at System.Web.UI.P age.ProcessRequ estWithNoAssert (HttpContext context)
at System.Web.UI.P age.ProcessRequ est(HttpContext context)
at ASP.pages_agind coe_oceanexport _agindjobcostin g_agindcoejobco stingdetailsfrp g_aspx.ProcessR equest(HttpCont ext context)
at System.Web.Http Application.Cal lHandlerExecuti onStep.System.W eb.HttpApplicat ion.IExecutionS tep.Execute()
at System.Web.Http Application.Exe cuteStep(IExecu tionStep step, Boolean& completedSynchr onously)


Custom event details:

For more information, see Help and Support Center at http://go.microsoft.co m/fwlink/events.asp.
Nov 18 '09 #1
3 4555
Frinavale
9,735 Recognized Expert Moderator Expert
Nice exception :)

It is highly unlikely that this is a classic asp question (it's more likely to be a .NET exception)

When you see an exception of this nature it means that you tried to use an Object that has not yet been instantiated.

Look through your code...check to make sure you use the new keyword to instantiate all objects Before you try to use them.

-Frinny

**edit**
I confirmed that you are using ASP.NET by looking at your other question.
I have moved your question to the appropriate forum.
Nov 19 '09 #2
chandhrakv
3 New Member
Thanks Frinny,

For your response.


But am not able to figure out this error though. Need some help to fix this clearly. Sorry to post here, as am a new user to this bytes...

Can you please suggest or update me what could be the error and where to fix this..


Thanks,
KVC
Nov 20 '09 #3
Frinavale
9,735 Recognized Expert Moderator Expert
I don't know what line number or anything that the exception occurred on.
I would suggest opening your project in Visual Studio and stepping through the code to see where the exception occurs.

If you can't find the exception then you're going to have to read through your code and make sure that every object exists at the times that you are using them.


-Frinny
Nov 20 '09 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

1
536
by: Rafael | last post by:
Hi, I hope I can find some help for this problem IDE: Visual Studio.NET 2003 Developer Editio Language: C# Problem: "An unhandled exception of type 'System.NullReferenceException' occurred in system.windows.forms.dll. Additional information: Object reference not set to an instance of an object. Visual Studio's IDE is not allowing me to develop projects in C#... I've trying to create a simple Windows Forms project using Visual Studio.NET...
3
2952
by: Professor Frink | last post by:
First off, I apologize if this gets long. I'm simply trying to give you all enough information to help me out. I'm writing (almost finished, actually), my first VB.Net application. It's a forms application that is going to be used to extract data from a legacy system (VSAM based mainframe file structure), and output data in pipe-delimited record layouts, multiple record types per file, one file per chosen client. I have been working on...
3
16931
by: juli | last post by:
Hello! I keep getting this error: An unhandled exception of type 'System.NullReferenceException' occurred Additional information: Object reference not set to an instance of an object. I am declaring with this code(class member): private Steema.TeeChart.Styles.Series ASeries; and than trying to initialize it:
5
2267
by: terry | last post by:
Hi, Question: When using Framesets and Server.Transfer in the Application_Error event handler is there a mechanism to get the error page to display in the total view of the browser not just in the offending frame? Overview: I have an application in which I am using framesets. When an Unhandled exception occurs I try to handle it
4
2249
by: Craig831 | last post by:
First off, I apologize if this gets long. I'm simply trying to give you all enough information to help me out. I'm writing (almost finished, actually), my first VB.Net application. It's a forms application that is going to be used to extract data from a legacy system (VSAM based mainframe file structure), and output data in pipe-delimited record layouts, multiple record types per file, one file per chosen client. I have been working on...
7
2692
by: Chuck Hartman | last post by:
I have a Windows service that requests web pages from a site using an HttpWebRequest object. When I try to request a page from an ASP.NET 2 site, I get a WebException with message "The remote server returned an error: (500) Internal Server Error." I found a post that suggested to catch the WebException to retrieve the actual HttpWebResponse object for more information. The response returned is shown below. At first I thought this was a...
1
2101
by: mike | last post by:
My program is crashing, but it doesn't crash on a single line of code. Below is what the output tab displays. I have no idea where to start inorder to debug this problem. Is there any suggesstions on how to start debuging the problem 'DefaultDomain': Loaded 'c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll', No symbols loaded 'StoredProcedure': Loaded 'N:\Dev\Programs\MNTEST3.net\Template.NET\bin\StoredProcedure.exe', No symbols...
9
3174
by: Supra | last post by:
i got error problem.......... An unhandled exception of type 'System.NullReferenceException' occurred in system.windows.forms.dll Additional information: Object reference not set to an instance of an object.. Namespace PirateChat <========== error occurred in here Public Class mainPirateChat
1
7989
by: chandhrakv | last post by:
Hi experts, Can any one please respond with the resolution. Machine: WIN2K3, ASP.NET application, .NET 2.0 with June 2007 hotfix installed recently. Facing daily 1000 errors with the same type hopefully. Please assist. ----- Event code: 3005 Event message: An unhandled exception has occurred. Event time: 11/18/2009 10:48:23 AM Event time (UTC): 11/18/2009 5:18:23 AM Event ID: 6418c83513d4492bb14bc36994b95996
0
8608
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9161
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8897
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8867
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7732
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6522
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.