Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
1.69/5 (5 votes)
How to use hidden-field control in form at asp.net?????? explain with one simple example?
Posted
Comments
kanha.460 6-Nov-12 23:57pm    
You should use Google for this. You can get very good answers.
_Amy 27-Jul-13 1:33am    
You should start from What have you tried?[^]
SoumenBanerjee 7-Nov-12 0:04am    
Please find these link. This will help you to understand hidden-feild better

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.hiddenfield.aspx

http://msdn.microsoft.com/en-us/library/75x4ha6s%28v=vs.100%29.aspx
Roly Nieto 30-Jun-14 17:26pm    
hgf

put it in aspx page

<input type="hidden" id="h1" runat="server" value="0" />


in code behind page

string strVal = h1.Value.ToString();
 
Share this answer
 
Comments
Roly Nieto 30-Jun-14 17:27pm    
I've made this vdeo, just now..... Hope you will be benefited ... Have a nice time.....

http://www.youtube.com/watch?v=LAHkjpZxTiM[^]
 
Share this answer
 
v2
Comments
CHill60 27-Jul-13 11:23am    
It's not polite to post solutions to questions that are over a year old with a link to your own material

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900