單form的提交有兩種方式,一種是get的方法,一種是post 的方法.看下面代碼,理解ASP.NET Get和Post兩種提交的區別:
你的名字
你的網站
:Button ID="Button1" runat="server" Text="send" />
br />
你的姓名
你的網站
/Lendo /> /runat="server" /="send" >
學習request 與response的用法
request 與response的用法
從URL中可看出ASP.NET Get和Post的區別.那麼那如何編程實現數據的接收呢? 第1種,接收用get 方法傳輸的數據的寫法: tected v. , EventArgs e) { string id = Request.QueryString["name"]; string website = Request.QueryString" ite ); Response.Write("你使用的是" + Request.RequestType + "方式傳送資料"); } 〜第種,接收用post 方法 } 〜第一種,接收用post 方法的寫法(object sender, EventArgs e) { string id2 = Request.Form["name2"]; string website2 = Request. br> " + website2); Response.Write("你使用的是" + Request.RequestType + "方式傳送資料"); } 『string idquest4 = Restring"string"string"string"string"string"string" 43); ["website4"]; Response.Write(id4 + "" + website4); 第3種,同時接受get和post 方法傳送資料的代碼寫法: Request.Params["name3"]; string website3 = Request.Params["website3"]; Response.Write(id3 + "" + websquest3); name4"]; string website4 = Request["website4"]; Response.Write(id4 + "" + website4);
〜〜〜〕納單的區別以下幾點:
1. get是從伺服器取得數據,post是傳送資料到伺服器。
2. get是把參數資料佇列加到提交表單的ACTION屬性所指的URL中,值和表單內各個欄位一一對應,在URL中可以看到。 post是透過HTTP post機制,將表單內各個欄位與其內容放置在HTML HEADER內一起傳送到ACTION屬性所指的URL位址。用戶看不到這個過程。
3. 對於get方式,伺服器端用Request.QueryString取得變數的值,對於post方式,伺服器端用Request.Form取得提交的資料。
4. get傳送的資料量較小,不能大於2KB。 post傳送的資料量較大,一般被預設為不受限制。但理論上,IIS4中最大量為80KB,IIS5中為100KB。
5. get安全性非常低,post安全性較高。但是執行效率卻比Post方法好。
建議:
1、get方式的安全性較Post方式要差些,包含機密資訊的話,建議用Post資料提交方式;
2、在做資料查詢時,建議用Get方式;而在做資料新增、修改或刪除時,建議用Post方式。