动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   Asp → 阅读文章

 ASP+中GetTitleAuthors和PutTitleAuthors应用例子

作者来源: 
阅读 2621 人次 , 2000-9-26 

-----------#C的例子--------

<%@ Import Namespace="DataServices" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SQL" %>

<html>
<script language="C#" runat="server">

protected void Page_Load(Object Src, EventArgs E)
{
DataService d = new DataService();
DataSet myData = d.GetTitleAuthors();

Authors_DataGrid.DataSource=myData.Tables["Authors"].DefaultView;
Authors_DataGrid.DataBind();

Message.InnerHtml = "The number of rows is: " + myData.Tables["Authors"].Rows.Count.ToString();

}

protected void Submit_DataSet(Object Src, EventArgs E)
{

DataService d = new DataService();
DataSet myData = d.GetTitleAuthors();

//Remove three rows from the Authors table
myData.Tables["Authors"].Rows.Remove(0);
myData.Tables["Authors"].Rows.Remove(1);
myData.Tables["Authors"].Rows.Remove(2);

int rowCount = d.PutTitleAuthors(myData);
Message.InnerHtml = "The modified number of rows is: " + rowCount.ToString();
}

</script>

<body style="font: 10pt verdana">

<h4>Using Data Access with Web Services</h4>

<form runat="server">

<input type="submit" OnServerclick="Submit_DataSet" value="Remove three rows from the DataSet"
runat="server"/>
<p>
<span id="Message" runat="server"/>

<p>

<ASP:DataGrid id="Authors_DataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
MaintainState="false"
/>

</form>

</body>

--------#VB----------------
<%@ Import Namespace="DataServices" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SQL" %>

<html>
<script language="VB" runat="server">

Protected Sub Page_Load(Src As Object, E As EventArgs)

Dim D As DataService = New DataService()
Dim MyData As DataSet = D.GetTitleAuthors()

Authors_DataGrid.DataSource=MyData.Tables("Authors").DefaultView
Authors_DataGrid.DataBind()

Message.InnerHtml = "The number of rows is: " & MyData.Tables("Authors").Rows.Count.ToString()

End Sub

Protected Sub Submit_DataSet(Src As Object, E As EventArgs)

Dim D As DataService = New DataService()
Dim MyData As DataSet = D.GetTitleAuthors()

'Remove three rows from the Authors table
MyData.Tables("Authors").Rows.Remove(0)
MyData.Tables("Authors").Rows.Remove(1)
MyData.Tables("Authors").Rows.Remove(2)

Dim RowCount As Integer = D.PutTitleAuthors(MyData)
Message.InnerHtml = "The modified number of rows is: " & RowCount.ToString()
End Sub

</script>

<body style="font: 10pt verdana">

<h4>Using Data Access with Web Services</h4>

<form runat="server">

<input type="submit" OnServerclick="Submit_DataSet" value="Remove three rows from the DataSet"
runat="server"/>
<p>
<span id="Message" runat="server"/>

<p>

<ASP:DataGrid id="Authors_DataGrid" runat="server"
Width="700"
BackColor="#ccccff"
BorderColor="black"
ShowFooter="false"
CellPadding=3
CellSpacing="0"
Font-Name="Verdana"
Font-Size="8pt"
HeaderStyle-BackColor="#aaaadd"
MaintainState="false"
/>

</form>

</body>
</html>
  

 本文TagsC#  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:ASP中时间采集源程序
· 下一篇:ASP+页缓存OutputCache Duration用法(指定页面过时时间)
· 简易ASP+注册系统
· 制作一个简单的广告系统
· 使用Windows DNA 设计、部署和管理一个可伸缩的电子商务网站(1)
· 如何在SQL数据库中得到重复次数最多的记录
· 怎样做自己的二级域名(之二)


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077