惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
博客园_首页
Schneier on Security
Schneier on Security
T
Tailwind CSS Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
Jina AI
Jina AI
腾讯CDC
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
B
Blog RSS Feed
宝玉的分享
宝玉的分享
博客园 - 叶小钗
S
SegmentFault 最新的问题
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
A
About on SuperTechFans
爱范儿
爱范儿
Y
Y Combinator Blog
量子位
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
aimingoo的专栏
aimingoo的专栏
Hacker News - Newest:
Hacker News - Newest: "LLM"
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
News | PayPal Newsroom
I
Intezer
Security Latest
Security Latest
V
Visual Studio Blog
H
Hacker News: Front Page
Scott Helme
Scott Helme
Latest news
Latest news
Forbes - Security
Forbes - Security
Engineering at Meta
Engineering at Meta
Cyberwarzone
Cyberwarzone
C
Check Point Blog
Last Week in AI
Last Week in AI
Google Online Security Blog
Google Online Security Blog
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
L
LINUX DO - 最新话题
WordPress大学
WordPress大学
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint

博客园 - 残叶

Enum视为位域 ASP.NET 2.0 HttpHandler实现生成图片验证码(转) Asp.net 2.0生命周期 ASP.NET 2.0 的 App_Offline.htm 联合使用抽象类和接口 C#中抽象类和接口的区别 C#静态构造函数 封装K2.net 2003中的K2ROM Asp.net开发小技巧 跨页面提交数据的方法 页面的重定向 (转)关于ASP.net运行流程 O/R Mapping (Object-Relation Mapping,对象关系映射) 网络主机名与IP C#发送Email方法总结 @@IDENTITY与SCOPE_IDENTITY() .NET和SQL Server中“空值”辨析 Transactions 回家了
(转)Asp.net 中 Get和Post 的用法
残叶 · 2007-06-25 · via 博客园 - 残叶

      表单form的提交有两种方式,一种是get的方法,一种是post 的方法.看下面代码,理解两种提交的区别:

<form id="form1" method="get" runat="server">
    
<div>
        你的名字
<asp:TextBox ID="name" runat="server"></asp:TextBox><br />
        
<br />
        你的网站
<asp:TextBox ID="website" runat="server"></asp:TextBox><br />
        
<br />
        
<br />
        
<asp:Button ID="Button1" runat="server" Text="send" /><br />
        
<br />
        
<br />
        学习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 />
        你的网站
<asp:TextBox ID="website2" runat="server"></asp:TextBox><br />
        
<br />
        
<br />
        
<asp:Button ID="Button2" runat="server" Text="send" /><br />
        
<br />
        
<br />
        学习request 和 response的用法
<br />
        
<br />
        
<br />
    
</div>
    
</form>

从URL中可看出区别.那么那如何编程实现数据的接收呢?
  
  第1种,接收用get 方法传输的数据的写法:

 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 + "方式传送数据");

    }

第2种,接收用post 方法传输的数据的写法:

 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 + "方式传送数据");

    }

第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);

表单提交中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方式;

更多区别请看:  http://www.cs.tut.fi/~jkorpela/forms/methods.html#fund