找不到路径的一部分(asp.net)
您好,我不断收到此错误:
Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Websites\site_sitecore\Website\Template\claim.htm'.
我使用的代码是:
message.BodyFileName = "/Template/claim.htm";
基本上尝试通过电子邮件发送电子邮件模板,但我无法让它找到路径。如果我使用该文件的外部链接,它会拒绝访问该文件,但无法找出如何获得内部工作的正确路径,有什么想法吗?
Hi I keep getting this error:
Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Websites\site_sitecore\Website\Template\claim.htm'.
The code I'm using is:
message.BodyFileName = "/Template/claim.htm";
Basically trying to send an email template via email but I can't get it to find the path. If I use a external link with that file it denies access to it but can't work out how to get the correct path to work internally, any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Server.MapPath('~/Template/claim.htm')。那有用吗?
Use Server.MapPath('~/Template/claim.htm'). Does that work?
尝试
message.BodyFileName = "Template/claim.htm";
try
message.BodyFileName = "Template/claim.htm";