databindingwithdataset.aspx
来自「《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.」· ASPX 代码 · 共 23 行
ASPX
23 行
<%@ Page Language="C#" %>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
CategoriesProxy.CategoriesService obj = new CategoriesProxy.CategoriesService();
output.DataSource = obj.GetCategoriesAsDataSet();
output.DataBind();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Performing Data Binding with the DataSet returned from a Web Service</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView runat="server" ID="output" />
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?