標籤:blog http 使用 os strong 資料 io for
用GET發送資料則用REQUEST.QUERYSTRING[‘‘ID‘‘]接收
一、request.aspx
二、request.aspx.cs
三運行效果:
以下是資料發送的途徑http://localhost:1693/aspnet/request.aspx?__VIEWSTATE=%2FwEPDwUKMTYzNzQ1NDcxN2RkM6FDpEGEGWC3nc84%2FugaXC4kNns%3D&name=%E6%97%A0%E5%A3%B0%E5%B2%81%E6%9C%88&age=23&Button1=%E6%8F%90%E4%BA%A4&__EVENTVALIDATION=%2FwEWBALi0oPyDAL7uPQdAtCCr6oGAoznisYGxvbqZicMzlX%2BV0mim64FvnurygY%3D
四以下是以POST傳送和以REQUEST.FORM["ID"]接收
requestpost.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="requestpost.aspx.cs" Inherits="requestpost" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>requestpost</title>
</head>
<body>
<form id="form2" runat="server" method="post">
<div>
<asp:Label ID="Label3" runat="server" Text="請輸入你的姓名:"></asp:Label>
<asp:TextBox ID="name2" runat="server"></asp:TextBox><br/>
<asp:Label ID="Label4" runat="server" Text="請輸入你的年齡:"></asp:Label>
<asp:TextBox ID="age2" runat="server"></asp:TextBox> <br />
<br/>
<asp:Button ID="Button2" runat="server" Text="提交post發送" OnClick="Button2_Click" />
</div>
</form>
</body>
</html>
requestpost.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class requestpost : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button2_Click(object sender, EventArgs e)
{
string name2 = Request.Form["name2"];
string age2 = Request.Form["age2"];
Response.Write("你的姓名是:" + name2 + "你的年齡是:" + age2);
Response.Write("你使用的是" + Request.RequestType + "方式傳送資料");
}
}
五、運行效果
以上看到地址欄並沒有長長的字串
表單提交中,ASP.NET的Get和Post方式的區別歸納如下幾點:
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方式。
第3種,同時接受get和post 方法傳送資料的代碼寫法:
A 寫法
- string id3 = Request.Params["name3"];
- string website3 = Request.Params["website3"];
- Response.Write(id3 + "< br>" + website3);
B 寫法
- string id4 = Request["name4"];
- string website4 = Request["website4"];
- Response.Write(id4 + "< br>" + website4);