经常需要在后台取html控件的值,说明一下。

其实并不需要runat="server",只需要加name="s1"就可以了,后台会识别name属性。

<select name="s1" id="s1" ><option selected="selected">赈灾</option></select> 


VB:

 usr.usercountry = Request.Form("s1")

同理,input 等HTML控件也可以.