|
作者: q1q1qqww [q1q1qqww] 论坛用户 | 登录 |
ASP.net连接access数据库例程 大家好,我是Asp.net的忠实爱好者,很想把这方面的经验和大家分享一下. 目前我选用的是时代互联(http://www.now.net.cn )的Asp.net+ACCESS空间(增强C). 欢迎大家一起进来讨论讨论! -------------------------------------------------------------------------------- 注意:要运行上述ACCESS例程请先下载数据库, 与例程放在同一目录下。 <%@ Import Namespace="System.Data" %> <%@ Import NameSpace="System.Data.OleDb" %> <script laguage="VB" runat="server"> Dim myConnection As OleDbConnection Dim myCommand As OleDbCommand sub page_load(sender as Object,e as EventArgs) '1.连接数据库 dim dbname as string dbname=server.mappath("authors.mdb") myConnection = New OleDbConnection( "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source="&dbname ) myConnection.Open() la1.text="Connection Opened!" '2.添加记录 myCommand = New OleDbCommand( "Insert INTO Authors(Authors,country) Values('Simson','usa')", myConnection ) myCommand.ExecuteNonQuery() la2.text="New Record Inserted!" '3 更新数据(Access) myCommand = New OleDbCommand( "UPDATE Authors SET Authors='Bennett' WHERE Authors = 'Simson'", myConnection ) myCommand.ExecuteNonQuery() la3.text="Record Updated!" '4 删除数据(access) myCommand = New OleDbCommand( "DELETE FROM Authors WHERE Authors = 'David'", myConnection ) myCommand.ExecuteNonQuery() la4.text="Record Deleted!" '5 使用DateGrid显示数据 myCommand = New OleDbCommand( "select * FROM Authors", myConnection ) MyDataGrid.DataSource=myCommand.Executereader() MyDataGrid.DataBind() end sub </script> <html> <body> <asp:label id="la1" runat="server" /><br> <asp:label id="la2" runat="server" /><br> <asp:label id="la3" runat="server" /><br> <asp:label id="la4" runat="server" /><br> <ASP:DataGrid id="MyDataGrid" runat="server" BorderColor="black" BorderWidth="1" GridLines="Both" CellPadding="3" CellSpacing="0" Font-Name="Verdana" Font-Size="10pt" HeaderStyle-BackColor="#aaaadd" AlternatingItemStyle-BackColor="#eeeeee" > </asp:DataGrid> </body> </html> 注意:要运行上述ACCESS例程请先下载数据库,与例程放在同一目录下。 Asp.net+ACCESS这款时代互联的空间在使用的速度和稳定上我都是非常满意的! Asp.net虚拟主机的服务提供商中,目前首推的是CNNIC的其中一家权威机构---时代互联(www.now.net.cn), 他们在2003年便更新使用微软发布最新版本的ASP.net Web Matrix了.经笔者的使用测试, 他提供的ASP.NET空间性能非常的稳定,版本也会定期的更新升级! 特别是他们现在推出 经济商务套餐: 增强C型,250M独立空间,支持ASP/ASP.NET(价值698元) Win2003,IIS 6.0,支持15M Access数据库 提供计数器,留言板 网易网站推广经济型1年(价值500元) 赠送300M企业邮箱 优惠价: 898 元/年 原 价:1198 元/年 立即节省:300 元 超值商务推广套餐: 商务C型,500M独立空间,支持ASP/ASP.NET(价值1600元) Win2003,IIS 6.0,支持50M Sql Server 2000数据库 提供计数器,留言板 网易网站推广超值型1年(价值2500元) 赠送800M企业邮箱 优惠价: 2600 元/年 原 价:4100 元/年 立即节省:1500 元 使用详解和例程: http://www.now.net.cn/support/host/(这里有更多更细的Asp.net的详细例程) 全球免费咨询电话:http://www.now.net.cn/customer/moreline.net(很方便的) 时代互联的Asp.net空间购买方法:http://www.now.net.cn/host 喜欢asp.net和需要建网站的朋友,可以去网站看看,相信会在asp.net的使用方面会有更深的认识。 我的QQ:108786612、199332496、108786611,MSN:linda@now.net.cn朋友们可以随时与我联系^_^ |
地主 发表时间: 04-03-06 16:44 |
|
20CN网络安全小组版权所有
Copyright © 2000-2010 20CN Security Group. All Rights Reserved.
论坛程序编写:NetDemon
粤ICP备05087286号