hi buddy's,
I am getting am error in website the error is
Error Message: Object reference not set to an instance of an object.
Stack Trace: at shops_custompage.Page_Load(Object sender, EventArgs e) in line 17 at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
please any one help me
regards
Tamilselvan
|
| Author: Pascal 09 Jan 2009 | Member Level: Gold | Rating:  Points: 3 |
"Object reference not set to an instance of an object." Error comes when the Object is null and you are trying to access some property or method using that... Something like
string name = obj.Name;
This will throw the above exception if obj is null.
Similarly there might be something like this. Try to debug your code and see.
|