获取完整服务器上文件所处位置(包含域名)

 1         /// <summary>
 2         /// 服务器路径
 3         /// </summary>
 4         public static string ServerPath
 5         {
 6             get
 7             {
 8                 string serverPath = HttpContext.Current.Request.Url.Authority;
 9 
10                 if (serverPath == "/")
11                 {
12                     return string.Empty;
13                 }
14                 else
15                 {
16                     return serverPath;
17                 }
18             }
19         }
20 
21     /// <summary>
22     /// 加载视频
23     /// </summary>
24     [AjaxPro.AjaxMethod()]
25     public string GetVideoUrl(int id)
26     {
27         string strUrl = "http://";
28 
29         if (id > 0)
30         {
31             //获取视频文件实体对象
32             VideoModel = VideoBll.GetModel(id);
33             //获得完整视频路径,由服务器域名+文件夹名称+视频名称
34             strUrl += Globals.ServerPath + Common.ConfigHelper.upLoadVideoPath + VideoModel.ImgUrl;
35         }
36 
37         return strUrl;
38     }    

转载于:https://www.cnblogs.com/gawking/archive/2012/10/10/2718145.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值