What's the best way to pass values from a HTML tag/elements to code behind without using the runat="server". Example
<input id="tags" type="text" />
Now, I want to pass the value of tags to code behind.
string tagsvalue = this.Request.Form.Get( "tags" );
I'm trying to use the code above but is not working. Any help will be really appreciate it.