在web.config中添加连接字符串

2008-02-23 09:36:08来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

web.config中的文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="constring" value="integrated security=SSPI;data source=localhost;initial catalog=教务管理系统" />
</appSettings>

<system.web>

。。。。。。。。。

</system.web>

</configuration>

访问如下:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'在此处放置初始化页的用户代码
If Not IsPostBack Then
Dim str As String = ConfigurationSettings.AppSettings("constring")
Dim con As New SqlClient.SqlConnection(str)
da.SelectCommand.Connection = con
da.Fill(daset, "课程信息")
dagrid.DataSource = daset.Tables("课程信息")
dagrid.DataBind()
End If
End Sub

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:在ASP中处理数据库的NULL记录

下一篇:asp关键字函数运算附