首页 > 编程 > .NET > 正文

如何在ASP.NET中显示数据库中的数据

2024-07-10 12:57:22
字体:
来源:转载
供稿:网友
第一步:从左边工具栏中拖一个datagrid到页面上,id为datagrid1 .

第二步:双击空白处,进入代码编写窗口.找到

private sub page_load(byval sender as system.object, byval e as system.eventargs) handles mybase.load

在其后加入如下代码:

dim strmycon as string = "server=mis04;user id=sa;password=little;database=humanresource"

dim strmycom as string = "select top 10 * from tbl_user"

dim mycon as new sqlclient.sqlconnection(strmycon)

dim mycom as new sqlclient.sqlcommand(strmycom, mycon)

mycon.open()

dim myreader as sqlclient.sqldatareader

myreader = mycom.executereader()

datagrid1.datasource = myreader

datagrid1.databind()

mycon.close()

第三步,运行f5
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表