表單form的提交有兩種方式,一種是get的方法,一種是post 的方法.看下面代碼,理解ASP.NET Get和Post兩種提交的區(qū)別: - < form id="form1" method="get" runat="server">
- < div>
- 你的名字< asp:TextBox ID="name" runat="server">< /asp:TextBox>< br />
- < br />
- 你的網(wǎng)站< asp:TextBox ID="website" runat="server">< /asp:TextBox>< br />
- < br />
- < br />
- < asp:Button ID="Button1" runat="server" Text="send" />< br />
- < br />
- < br />
- 學(xué)習(xí)request 和 response的用法< br />
- < br />
- < br />
- < /div>
- < /form>
-
-
-
- < form id="form2" method="post" runat="server">
- < div>
- 你的名字< asp:TextBox ID="name2" runat="server">< /asp:TextBox>< br />
- < br />
- 你的網(wǎng)站< asp:TextBox ID="website2" runat="server">< /asp:TextBox>< br />
- < br />
- < br />
- < asp:Button ID="Button2" runat="server" Text="send" />< br />
- < br />
- < br />
- 學(xué)習(xí)request 和 response的用法< br />
- < br />
- < br />
- < /div>
- < /form>
-
-
-
-
-
-
- protected void Page_Load(object sender, EventArgs e)
- {
- string id = Request.QueryString["name"];
- string website = Request.QueryString["website"];
- Response.Write(id + "< br>" + website);
-
- Response.Write("你使用的是" + Request.RequestType + "方式傳送數(shù)據(jù)");
-
- }
-
-
-
- protected void Page_Load(object sender, EventArgs e)
- {
-
- string id2 = Request.Form["name2"];
- string website2 = Request.Form["website2"];
- Response.Write(id2 + "< br>" + website2);
-
-
- Response.Write("你使用的是" + Request.RequestType + "方式傳送數(shù)據(jù)");
-
- }
-
- string id4 = Request["name4"];
- string website4 = Request["website4"];
- Response.Write(id4 + "< br>" + website4);
-
-
-
-
-
- string id3 = Request.Params["name3"];
- string website3 = Request.Params["website3"];
- Response.Write(id3 + "< br>" + website3);
-
-
-
- string id4 = Request["name4"];
- string website4 = Request["website4"];
- Response.Write(id4 + "< br>" + website4);
表單提交中,ASP.NET的Get和Post方式的區(qū)別歸納如下幾點(diǎn): 1. get是從服務(wù)器上獲取數(shù)據(jù),post是向服務(wù)器傳送數(shù)據(jù)。 2. get是把參數(shù)數(shù)據(jù)隊(duì)列加到提交表單的ACTION屬性所指的URL中,值和表單內(nèi)各個(gè)字段一一對(duì)應(yīng),在URL中可以看到。post是通過HTTP post機(jī)制,將表單內(nèi)各個(gè)字段與其內(nèi)容放置在HTML HEADER內(nèi)一起傳送到ACTION屬性所指的URL地址。用戶看不到這個(gè)過程。 3. 對(duì)于get方式,服務(wù)器端用Request.QueryString獲取變量的值,對(duì)于post方式,服務(wù)器端用Request.Form獲取提交的數(shù)據(jù)。 4. get傳送的數(shù)據(jù)量較小,不能大于2KB。post傳送的數(shù)據(jù)量較大,一般被默認(rèn)為不受限制。但理論上,IIS4中最大量為80KB,IIS5中為100KB。 5. get安全性非常低,post安全性較高。但是執(zhí)行效率卻比Post方法好。 建議: 1、get方式的安全性較Post方式要差些,包含機(jī)密信息的話,建議用Post數(shù)據(jù)提交方式; 2、在做數(shù)據(jù)查詢時(shí),建議用Get方式;而在做數(shù)據(jù)添加、修改或刪除時(shí),建議用Post方式。
params、Request、Request.querystring、Request.Form 具體區(qū)別! MSDN:Request ObjectRequest Request.Form:獲取以POST方式提交的數(shù)據(jù)(接收Form提交來的數(shù)據(jù)); Request.QueryString:獲取地址欄參數(shù)(以GET方式提交的數(shù)據(jù)) Request:包含以上兩種方式(優(yōu)先獲取GET方式提交的數(shù)據(jù)),它會(huì)在QueryString、Form、ServerVariable中都按先后順序搜尋一遍。而且有時(shí)候也會(huì)得到不同的結(jié)果。如果你僅僅是需要Form中的一個(gè)數(shù)據(jù),但是你使用了Request而不是Request.Form,那么程序?qū)⒃赒ueryString、ServerVariable中也搜尋一遍。如果正好你的QueryString或者ServerVariable里面也有同名的項(xiàng),你得到的就不是你原本想要的值了。 Request.Params是所有post和get傳過來的值的集合,request.params其實(shí)是一個(gè)集合,它依次包括request.QueryString、request.Form、request.cookies和request.ServerVariable。 asp.net 默認(rèn)雖然是POST Form,但是只是自己post自己,不能POST到其他頁面
如果非要提交到令一個(gè)頁面的話 用HTML元素 把runat="server" 去掉 用submit提交 用Request.Form["xxx"] 可以取值
|