双引号内有双引号
我正在将以下连接字符串写入 web.config 但它给了我错误。正确的写法是什么?
<add name="stargaze_stargazeConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="D:\Work At DS\19th Jan\myastrolove.com_new\App_Data\dbName.mdf";Integrated Security=True;User Instance=True"/>
i am writing the following connection string into web.config
but it giving me error.what is the correct way to write it?
<add name="stargaze_stargazeConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="D:\Work At DS\19th Jan\myastrolove.com_new\App_Data\dbName.mdf";Integrated Security=True;User Instance=True"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
web.config 是 XML,因此需要将内部引号转义为
"
:web.config is XML, so you need to escape the inner quotes to
"
:在字符串内,将
"
替换为\"
以正确转义它。这意味着您的字符串应该如下所示:
Inside the string, replace
"
with\"
to properly escape it.That means that your string should look like this:
不应该是这样的吗:
Shouldn't it be like: