陈斌彬的技术博客

Stay foolish,stay hungry

ASP.NET Form表单提交处理

<form id="form1" runat="server" action="TempFile.aspx" method="post" onsubmit="return check();" >

使用 POST 方法将表单提交到 TempFile.aspx 这个页面,表单中的内容有

<input type="text" name="title" class="inputtext" />
<input type="text" name="time" class="inputtext" />
<textarea name="content" id="content" cols="" rows="5"  class="content"></textarea>

后台取数据

string title = Request.Form["title"];
string time = Request.Form["time"];
string content = Request.Form["content"];