我应该如何更改连接字符串,用于托管 ASP.NET 站点

发布于 2025-01-07 06:58:08 字数 339 浏览 2 评论 0原文

   connectionString=Data        Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True providerName=System.Data.SqlClient

// 我应该在连接字符串中更改什么,以便我可以在 assppider.info 上托管我的 asp.net 站点... //我得到这个错误

SqlException(0x80131904):用户没有执行此操作的权限......等等......

   connectionString=Data        Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True providerName=System.Data.SqlClient

// what should i change in my connection string so i can host my asp.net site on aspspider.info...
//i get this errod

SqlException (0x80131904): User does not have permission to perform this action....and so on...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

宫墨修音 2025-01-14 06:58:08
\SQLEXPRESS;Initial Catalog=dubaicargo;
Persist Security Info=True;User ID=username;Password=password;pooling=false

更改您的连接不使用集成安全性。上述连接只是一个示例。有很多方法可以更安全地连接到数据库,请参阅以获取列表连接字符串

\SQLEXPRESS;Initial Catalog=dubaicargo;
Persist Security Info=True;User ID=username;Password=password;pooling=false

change your connection don't use integrated security. the above connection is just a sample. there are many ways to connect to yourdatabase with more security see this for list connection strings

差↓一点笑了 2025-01-14 06:58:08

尝试使用 SqlServer 身份验证而不是 windows 身份验证

Try to use SqlServer Authentication instead of windows authentication

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文