程序使用 Microsoft Visual Studio 文件夹而不是相对路径
当我尝试使用下一个代码运行 .aspx 页面时:
System.IO.File.Delete("~/img/afisha/" + fileName);
它会写入一条消息:“找不到路径 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\img\afisha\brs_01 的部分路径。 jpg'。” 但我需要使用相对路径。
附:连接字符串也会发生同样的情况:
有什么想法吗? (它能在服务器上正常工作吗?)
When I try to run .aspx page with next code:
System.IO.File.Delete("~/img/afisha/" + fileName);
it writes a message: "Could not find a part of the path 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\img\afisha\brs_01.jpg'."
But I need to use relative path.
ps. the same thing happens with the connection string: <add name="accessConStr" connectionString="Provider=Microsoft.ACE.OLEDB.12.0; data source=ExpertBase.mdb; Persist Security Info=False;" providerName="System.Data.OleDb"></add>
Any ideas? (and will it work on the server properlly?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
Server.MapPath()
作为连接字符串,您可以尝试使用变量字符串
Try
Server.MapPath()
for the connection string you can try using a variable string instead