21 lines
762 B
C#
21 lines
762 B
C#
using System;
|
|
using System.Web;
|
|
|
|
namespace FineUIPro.Mobile.AttachFile
|
|
{
|
|
public partial class player : PageBaseMobile
|
|
{
|
|
public string videoUrl;
|
|
public string videoTitle;
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
videoTitle = "播放";
|
|
string httpstring = Request.Url.ToString();
|
|
httpstring = httpstring.Substring(0, httpstring.IndexOf(":"));
|
|
|
|
string urls = HttpUtility.UrlDecode(Request.QueryString["url"]);
|
|
//videoUrl = httpstring + "://" + Request.ServerVariables["SERVER_NAME"] + ":" + Request.ServerVariables["SERVER_PORT"]+"/"+ urls;
|
|
videoUrl = BLL.Funs.SGGLUrl + urls; //"https://c.sedin.com/sggl/"
|
|
}
|
|
}
|
|
} |