您好,登錄后才能下訂單哦!
ASP.NET中get和post方法的區(qū)別是什么,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
在網頁設計中,無論是動態(tài)還是靜態(tài),get方法是默認的,它在URL地址長度是有限的,所以get請求方法能傳送的數(shù)據也是有限的,一般get方法能傳遞256字節(jié)的數(shù)據,當get請求方法傳遞的數(shù)據長度不能滿足需求時,就需要采用另一種請求方法post,post方法可傳遞的數(shù)據***值為2mb相應地,讀取post方法傳遞過來的數(shù)據時,需要采用form方法來獲??;post方法在aspx頁面執(zhí)行時,地址欄看不到傳送過來的參數(shù)數(shù)據,更加有利于頁面的安全,所以一般情況采用post方法傳送頁面數(shù)據。
這里舉個簡單的例子:
(get方法)
html頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>發(fā)送GET請求</title> </head> <body> <center >
發(fā)送GET請求
<hr /> <form action=default7.aspx method =get > 輸入發(fā)送的內容: <input type =text name="content1" /> <br /> <input type =submit value ="發(fā)送" /> </form> </center> </body> </html>
對應的aspx頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>接收GET請求</title> </head> <body> <center >
接收GET方法傳來的內容:
<hr /> <% string content = Request.QueryString["content1"]; Response.Write("GET方法發(fā)送過來的內容為:"+content); %> </center> </body> </html>
(post方法)
html頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>發(fā)送post請求</title> </head> <body> <center >
發(fā)送post請求
<hr /> <form action =default8.aspx method =post >
輸入發(fā)送的內容:
<input type =text name="content1" /> <br /> <input type =submit value ="發(fā)送" /> </form> </center> </body> </html>
對應的aspx頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>接收post請求</title> </head> <body> <center >
接收post方法傳來的內容:
<hr /> <% string content=Request .Form ["content1"]; Response.Write("POST方法發(fā)送過來的內容為:"+content); %> </center> </body> </html>
看完上述內容,你們掌握ASP.NET中get和post方法的區(qū)別是什么的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。