111,126
社区成员
发帖
与我相关
我的任务
分享public string GetStr()
{
StringBuilder sBulid = new StringBuilder();
sBulid.Append(@"<select id=""select18"" name=""select"">
<option value=""男"">男 </option >
<option value=""女"">女 </option > //去掉一个也没问题。
</select > ");
return sBulid.ToString();
}
protected void test_Click(object sender, EventArgs e)
{
if (Request.Form["select"] != null)
{
string s = Request.Form["select"];
Response.Write(s);
}
}