ASP.NET 中设置路径的三种方式
摘要:
下面列举的是ASP.NET 开发中,常用的设置路径的三种方式。 Default.aspx.cs 代码如下:public partial class _Default : System.Web.UI.Page { public string GetUrl(string _img) { //获取服务器上 ASP.NET 应用程序的虚拟应用程序根路径。 string root = Request.ApplicationPath; //返回图片根目录下的绝对路径,并添加双引号。 return '"'+ root + "/img/" + _img +' 阅读全文
posted @ 2010-11-18 13:01 钢钢 阅读(4516) 评论(6) 推荐(0) 编辑