扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:朱先忠编译 来源:天极开发 2007年11月7日
关键字: Windows
Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load If Not Page.IsPostBack Then 'Start by determining the connection string value Dim connString As String = ConfigurationManager.ConnectionStrings(connStringName).ConnectionString '创建一个SqlConnection实例 Using myConnection As New SqlConnection(connString) '指定SQL查询 Const sql As String = "SELECT * FROM Customers" '创建一个SqlCommand实例 Dim myCommand As New SqlCommand(sql, myConnection) '取回一个DataSet Dim myDataSet As New DataSet '创建一个SqlDataAdapter查询 Dim myAdapter As New SqlDataAdapter(myCommand) myAdapter.Fill(myDataSet) '把DataSet绑定到GridView gvCustomers.DataSource = myDataSet gvCustomers.DataBind() '关闭连接 myConnection.Close() End Using End If End Sub |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者