<asp:HiddenField ID="HiddenField1" runat="server" />
<asp:TextBox ID="Textbox1" runat="server" Visible = "false"></asp:TextBox>
How ASP.Net will render asp:HiddenField and asp:TextBox with visibility property as false?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In context of you html
text-boxwill not be render on the browser.But the
hidden fieldwill be rendered.The control visibility which you set from the server side code will not be render on the browser.
You you want to use the use
cssdisplay:none