我应该如何更改连接字符串,用于托管 ASP.NET 站点
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更改您的连接不使用集成安全性。上述连接只是一个示例。有很多方法可以更安全地连接到数据库,请参阅此以获取列表连接字符串
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
尝试使用 SqlServer 身份验证而不是 windows 身份验证
Try to use SqlServer Authentication instead of windows authentication