1
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="delCookie.aspx.cs" Inherits="delCookie" %>
2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5
<html xmlns="http://www.w3.org/1999/xhtml" >
6
<head runat="server">
7
<title>Untitled Page</title>
8
</head>
9
<body>
10
<form id="form1" runat="server">
11
<div>
12
<asp:Button ID="btn_DelCookie" runat="server" Text="删除Cookie" OnClick="btn_DelCookie_Click" /><br />
13
<br />
14
15
<asp:Button ID="btn_SaveCookie" runat="server" OnClick="btn_SaveCookie_Click"
16
Text="保存Cookie" />
17
<br />
18
<br />
19
<asp:Button ID="btn_ReadCookie" runat="server" Text="读取Cookie"
20
OnClick="btn_ReadCookie_Click" /> <br />
21
<br />
22
<asp:Button ID="btn_ModifyCookie" runat="server" Text="修改Cookie" OnClick="btn_ModifyCookie_Click" /> </div>
23
</form>
24
</body>
25
</html>
26

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

aspx.cs






















































































