问一个初学的问题,关于表单提交检查
很简单,就是我采用传统的html的text做了一个编辑框,
<input id= "Text1 " style= "width: 64px " type= "text " /> </td>
然后通过
asp.net中的按钮编写事件,在产生的事件中如何得知这个静态text中的值?
protected void Button1_Click(object sender, EventArgs e)
{
//这样好像得不到Text1中的值
String inputText = Request.Form.Get( "Text1 ");
}
------解决方案--------------------Request.Form[ " "]