How to access value of text box contained in juice tag control -
i building asp.net web form. in of pages added juice tag control organized collection data related use-cases.
reason unknown me, when switch code source view design view, can't see text boxes. when view in browser see text box , button. because of cannot access value of text box code behind. can 1 tell me cause of , how can values of text box code behind.
<asp:content id="bodycontent" contentplaceholderid="maincontent" runat="server"> <div> <juice:tabs id="_default" runat="server"> <juice:tabpage title="personaldata" id="_tab1"> <tabcontent> <label>firstname</label> <asp:textbox id="txtfirstname" runat="server"></asp:textbox> </tabcontent> </juice:tabpage> </div> </asp:content>
i try accessing text box value follows:
string firstname = txtfirstname.text.tostring();
but text value not recognized code behind.
Comments
Post a Comment