gpt4 book ai didi

c# - 如何在C#中获取网站根路径?

转载 作者:太空狗 更新时间:2023-10-29 19:51:17 25 4
gpt4 key购买 nike

在 C# 代码中,我需要为图像编写 src。有谁知道如何在 C# 中获取网站根路径?我的文件夹结构是 UI/Image我发现当我使用

string rootpath=Page.Request.ApplicationPath;

如果在 Debug模式下运行应用程序,它会工作。但如果直接输入 url 运行它,它不会显示图像。图片的属性是http://image/turnon.bmp应该是 http://localhost/image/turnon.bmp

有什么想法吗?

最佳答案

一个简单的方法是使用 MapPath~ 通配符:

string imagePath = MapPath("~/image/turnon.bmp");

作为Dan Csharpster stated在注释中,由于公开 MapPath 方法的 Server 对象不能直接在类库中使用,因此命令应该是

string imagePath = HttpContext.Current.Server.MapPath("~/image/turnon.bmp");

关于c# - 如何在C#中获取网站根路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7488360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com