473,394 Members | 1,640 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Object reference not set to an instance of an object.

Hi,

I am new to VB .Net programming and is trying to create a webpage. I encountered the following error and is totally clueless on how to make it work:

==================ERROR=========================== =======
Object reference not set to an instance of an object.


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.]
ICAPS_admin.WebForm1.Page_Load(Object sender, EventArgs e)
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()

================================================== =======

My webpage that I am trying to load is a very simple one which consist of only 3 dropdown list and 2 textbox. Below is my VB code:


==================Code ===================================
Expand|Select|Wrap|Line Numbers
  1. Public Class WebForm1
  2.     Inherits System.Web.UI.Page
  3.  
  4. #Region " Web Form Designer Generated Code "
  5.  
  6.     'This call is required by the Web Form Designer.
  7.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  8.  
  9.     End Sub
  10.     Protected WithEvents LabelSearchGemSecNo As System.Web.UI.WebControls.Label
  11.     Protected WithEvents txtBoxGemSecNo As System.Web.UI.WebControls.TextBox
  12.     Protected WithEvents LabelSearchUserID As System.Web.UI.WebControls.Label
  13.     Protected WithEvents txtBoxUserID As System.Web.UI.WebControls.TextBox
  14.     Protected WithEvents LabelStatus As System.Web.UI.WebControls.Label
  15.     Protected WithEvents LabelCAtype As System.Web.UI.WebControls.Label
  16.     Protected WithEvents LabelIndicator As System.Web.UI.WebControls.Label
  17.     Protected WithEvents ddlStatus As System.Web.UI.WebControls.DropDownList
  18.     Protected WithEvents ddlCAtype As System.Web.UI.WebControls.DropDownList
  19.     Protected WithEvents ddlIndicator As System.Web.UI.WebControls.DropDownList
  20.  
  21.     'NOTE: The following placeholder declaration is required by the Web Form Designer.
  22.     'Do not delete or move it.
  23.     Private designerPlaceholderDeclaration As System.Object
  24.  
  25.     Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  26.         'CODEGEN: This method call is required by the Web Form Designer
  27.         'Do not modify it using the code editor.
  28.         InitializeComponent()
  29.     End Sub
  30.  
  31. #End Region
  32.  
  33.     Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  34.         'Put user code to initialize the page here
  35.     End Sub
  36.  
  37.  
  38.     Private Sub ddlCAtype_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ddlCAtype.SelectedIndexChanged
  39.  
  40.     End Sub
  41. End Class
  42.  
================================================== =======

Can anyone advise on this pls?

Thanks and regards,

livmacca
Mar 26 '08 #1
4 2155
balabaster
797 Expert 512MB
Put a breakpoint on the Page_Load event and run your web application. When the breakpoint is reached hit F11 to step through the application. What is the exact line of code executed when this error occurs?

I'm failing to see anything wrong with the code you provided - so if you've provided everything in your project, then I'm thinking that it's an environment problem. But I'd rather not tell you that your Visual Studio needs reinstalling - lord knows it takes long enough.
Mar 26 '08 #2
nev
251 100+
Check to see if anything being referenced is null or has valid data type.
Mar 26 '08 #3
Plater
7,872 Expert 4TB
This is a VS2003 web application right? (In VS2005 you don't see the designer code like that)
Did you leave out any code? it looks like your page_load event is empty, but that's where it says the error is comming from?
Mar 26 '08 #4
Put a breakpoint on the Page_Load event and run your web application. When the breakpoint is reached hit F11 to step through the application. What is the exact line of code executed when this error occurs?

I'm failing to see anything wrong with the code you provided - so if you've provided everything in your project, then I'm thinking that it's an environment problem. But I'd rather not tell you that your Visual Studio needs reinstalling - lord knows it takes long enough.


Hi,

I guess it is the environment issue as it went away after i reinstalled VS 2003. Thanks for your reply! :)
Mar 29 '08 #5

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

Similar topics

28
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()',...
6
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
3
by: Adam | last post by:
We have a web site that uses .vb for the web pages and .cs for a class module. We are getting the error in .NET 2.0 and VS 2005 beta 2. It does work with .NET 1.1. When trying to access a page...
4
by: Luke Matuszewski | last post by:
Here are some questions that i am interested about and wanted to here an explanation/discussion: 1. (general) Is the objectness in JavaScript was supported from the very first version of it (in...
12
by: Andrew Poulos | last post by:
With the following code I can't understand why this.num keeps incrementing each time I create a new instance of Foo. For each instance I'm expecting this.num to alert as 1 but keeps incrementing. ...
6
by: Shailen Sukul | last post by:
Observed a weird behaviour with object references. See code listing below: using System; using System.Collections.Generic; using System.Text; namespace PointerExceptionTest { /*
14
by: Philipp Reif | last post by:
Hi all, I've got a little hole in my head concerning references. Here's what I'm trying to do: I'm calling a function, passing the reference of a business object for editing. The function clones...
3
by: User1014 | last post by:
A global variable is really just a property of the "Global Object", so what does that make a function defined in the global context? A method of the Global Object? ...
2
by: Ralph | last post by:
Hi I don't understand why it's not working: function schedule(imTop){ this.tdImagesTop = imTop; } schedule.prototype.selectEl = function() { alert(this.tdImagesTop);
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
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...

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.