H
Howard
According to MSDN
If I use a user control like this
<Acme:Login id="MyLogin" UserId="John Doe" runat="server"/>
In the .cs file I put
public string UserId = "";
Then I can reference UserId from my code
my question is if i have a user control like this
<Acme:Login id="MyLogin" runat="server">something</Acme:Login>
When would I access the text in between the tags?
If I use a user control like this
<Acme:Login id="MyLogin" UserId="John Doe" runat="server"/>
In the .cs file I put
public string UserId = "";
Then I can reference UserId from my code
my question is if i have a user control like this
<Acme:Login id="MyLogin" runat="server">something</Acme:Login>
When would I access the text in between the tags?