I'm struggling, trying to declare a user control in code. ASP.NET seems to accept the declaration, but won't let me access any methods or properties of the object.
For example,
followed by
raises the following error:
'memberid' is not a member of 'ASP.addminiagenda'.
ANY IDEAS??? thanks! -brad
For example,
Code:
<%@ Register TagPrefix="uc0" TagName="addminiagenda" Src="addminiagenda.ascx" %>
Code:
dim cl as new addminiagenda
cl.memberid = e.commandargument.tostring
raises the following error:
'memberid' is not a member of 'ASP.addminiagenda'.
ANY IDEAS??? thanks! -brad