配置数据库联接字段

在web.config根目录中



在程序中引用:

Imports System.Data
Imports System.Data.SqlClient

 Dim strconn As String = System.Configuration.ConfigurationSettings.AppSettings("strconn")

最好是将这个联接字符串加密,安全性高些。。。使用时在程序中解密使用

还可以在globl。asax文件中用application配置数据库链接字符串,

你可能感兴趣的:(asp.net,web.config)