Changing the connectionString value

本文关键字:value connectionString the Changing | 更新日期: 2023-09-27 18:13:09

我试图在我的应用程序中更改我的connectionString的默认值。如何更改它,使其重定向到系统中的数据库?

下面是我的代码:
private static string connectionString = ConfigurationManager.ConnectionStrings["sqlcn"].ConnectionString.ToString();

谢谢!

Changing the connectionString value

在你的App.config文件(或Web. config文件)中。如果它是一个web应用程序,配置),有一个元素<connectionStrings>。您可以编辑这里列出的值来更改您的连接字符串。

有关此主题的更多信息,请参阅MSDN页面。