I have an html control which I want to set its value .... here\'s the control:
Its old question , but may help someone.
You have to use Request.Form to get and call .Value to set the value.
HTML
CODE BEHIND
//To get value: string myname=Request.Form["first_name_txt"]; // To set value: first_name_txt.Value="";