The First:前端代码
< form>
< select id=”Select1” name=”gclass” class=”input”>
< option value=”1”>住院医师(5+3)
< option value=”2”>助理医师(3+2)
< /select>
< div class=”field”>
< input type=”password” class=”input” id=”password” maxlength=”20” name=”password”
size=”20” placeholder=”登录密码,英文字母、下划线、数字组成 字数在6-20个” data-validate=”required:请填写密码,length#>=6:字数在6-20个” />
< /div>
< /form>
The Second:获取它们的值
string gcnum = Request.Form[“gclass”].ToString();
注:这里获取到的是下拉列表的value值
string paw = Request.Form[“password”].ToString();