vote up 1 vote down star

I have an Asp.NET application (VS2008, Framework 2.0). When I try to set a property on one of the user controls like

myUserControl.SomeProperty = someValue;

I get a NullReferenceException. When I debug, I found out that myUserControl is null. How is it possible that a user control handle is null? How do I fix this or how do I find what causes this?

flag

73% accept rate

4 Answers

vote up 2 vote down check

Where are you trying to access the property? If you are in onInit, the control may not be loaded yet.

link|flag
vote up 2 vote down

Where exactly in the code are you attempting to do this? It is possible that you are attempting to access the control too early in the page lifecycle and it has not been instantiated yet.

link|flag
vote up 0 vote down

If you created the UserControl during runtime (through ControlCollection.Add), you need to create it on postback too.

Another case can be your UserControl does not match the designer.cs page

link|flag
vote up 0 vote down

I was trying to set the property from markup on an outside user control. When I took the property to OnLoad, it worked.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.