关于web应用程序安全的思考(序)
2008-11-26 13:36:02 来源:WEB开发网注:C:tmprequest.txt中的内容就是前面的Request字符串。程序执行的结果如下:除了直接进行Request外,大部分时候,我们在网页上单击某个链接或按钮时,浏览器和web服务器也在背后进行着这样的请求和响应。例如以下网页程序:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="form.aspx.cs" Inherits="form" %>
<!DOCTYPE html PUBLIC "-//W
3C
//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>测试窗体Request</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="你的名字:"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="送出" />
<asp:Label ID="Label2" runat="server" ForeColor="OrangeRed"></asp:Label></div>
</form>
</body>
</html>
更多精彩
赞助商链接