前台代码:
1
后台代码:
1
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DataXML.aspx.cs" Inherits="Jun_DataXML" %>
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>无标题页</title>
8
</head>
9
<body>
10
<form id="form1" runat="server">
11
<div>
12
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="保存为XML数据" />
13
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="加载XML数据" />
14
<asp:DataGrid ID="DataGrid1" runat="server" Height="135px" Width="255px">
15
</asp:DataGrid>
16
17
</div>
18
</form>
19
</body>
20
</html>
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21