找不到路径的一部分(asp.net)

发布于 2024-11-26 22:05:26 字数 371 浏览 0 评论 0原文

您好,我不断收到此错误:

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 技术交流群。

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

发布评论

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

评论(2

梦年海沫深 2024-12-03 22:05:26

使用 Server.MapPath('~/Template/claim.htm')。那有用吗?

Use Server.MapPath('~/Template/claim.htm'). Does that work?

遗忘曾经 2024-12-03 22:05:26

尝试 message.BodyFileName = "Template/claim.htm";

try message.BodyFileName = "Template/claim.htm";

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