vote up 0 vote down star

Hi, I have User Controls (.ascx) file and when I place it inside a ListView Edit Template it throws a NullRefreche error (Object reference not set to an instance of an object). Can anyone tell me why? Is it because of a late binding?

flag

50% accept rate
Is there something wrong with your keyboard? Getting used to that new DVORAK layout? – Robert Harvey Nov 1 at 0:11
Code samples, please. – Robert Harvey Nov 1 at 0:13
<%@ Register src="UserControls/UcMemberLookup.ascx" tagname="UcMemberLookup" tagprefix="uc6" %> <asp:ListView ID="ListView1" runat="server" DataSourceID="ods1" DataKeyNames="Id"> <EditItemTemplate> <uc3:UcMemberLookup ID="UcMemberLookup1" runat="server" MemberId='<%# Bind("MemberId") %>' /> </EditItemTemplate> </asp:ListView> The UserControl throws an error. – Shuaib Nov 1 at 15:14

1 Answer

vote up 0 vote down

Okay I found the error. It was a "User Error". lol The Paramter MemerbId pass was null. So I changed the Property public int MemberId{set;get;} to public int? MemberId{set;get;}. That fixed the issue.

Thanks

link|flag

Your Answer

Get an OpenID
or

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