I am getting Null object reference in my web page base pages. I am working with old code and my intentions are to understand how to either pass this context data or know how to handle it properly. Here is the error...
[NullReferenceException: Object reference not set to an instance of an object.]
NetOpsBasePage.OnInitComplete(EventArgs e) +148
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
The code below is where the error is occurring and I would like to know how to resolve this issue. What it needs is an object that contains device properties for the web pages.
I believe this needs to be called whenever I need to access a page so the ISS 7 asp server can populate its pages with device property information. &n ...
Go to the complete details ...