您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關get方法和post方法在ASP.NET中有什么區別,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
ASP.NET 是開源,跨平臺,高性能,輕量級的 Web 應用構建框架,常用于通過 HTML、CSS、JavaScript 以及服務器腳本來構建網頁和網站。
get方法
html頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>發送GET請求</title> </head> <body> <center >
發送GET請求
<hr /> <form action=default7.aspx method =get > 輸入發送的內容: <input type =text name="content1" /> <br /> <input type =submit value ="發送" /> </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方法發送過來的內容為:"+content); %> </center> </body> </html>
post方法
html頁面:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>發送post請求</title> </head> <body> <center >
發送post請求
<hr /> <form action =default8.aspx method =post >
輸入發送的內容:
<input type =text name="content1" /> <br /> <input type =submit value ="發送" /> </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方法發送過來的內容為:"+content); %> </center> </body> </html>
用get方法,當執行aspx頁面時,地址欄的顯示有一段字符“?content1=html輸入的值”,而用post方法,沒顯示,相比之下,post方法比較安全適用。
看完上述內容,你們對get方法和post方法在ASP.NET中有什么區別有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。