Exemple #1
0
        public string GetUrl(string absolutePath)
        {
            string retVal = absolutePath;

            try
            {
                WebDavTicket ticket = WebDavTicket.Parse(absolutePath);
                retVal = WebDavUrlBuilder.GetWebDavUrl(ticket.AbsolutePath, true);
            }
            catch (Exception)
            {
            }

            return(retVal);
        }
Exemple #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            ResourceManager LocRM = new ResourceManager("Mediachase.UI.Web.App_GlobalResources.FileLibrary.Resources.strFileLibrary", Assembly.GetExecutingAssembly());

            secHeader.Title = LocRM.GetString("tDownloadLinkTitle");
            int lifeTime = 0;

            try
            {
                lifeTime = Convert.ToInt32(PortalConfig.WebDavSessionLifeTime);
            }
            catch (Exception)
            {
            }

            string sTime = String.Format("{0:D2}:{1:D2}", lifeTime / 60, lifeTime % 60);
            string sLink = WebDavUrlBuilder.GetWebDavUrl(_id);

            lblDownloadLink.Text = String.Format(LocRM.GetString("tDownLoadLink"), "javascript:FileDownload();", sTime);

            StringBuilder sb = new StringBuilder();

            sb.AppendLine("var global_DownloadFlag = true;");
            sb.AppendLine("function FileDownload()");
            sb.AppendLine("{");
            sb.AppendLine("global_DownloadFlag = false;");
            sb.AppendFormat("window.location.href='{0}'", sLink);
            sb.AppendLine("}");
            sb.AppendLine("function AutoFileDownload()");
            sb.AppendLine("{");
            sb.AppendLine("if(!global_DownloadFlag) return;");
            sb.AppendFormat("window.location.href='{0}'", sLink);
            sb.AppendLine("}");
            sb.AppendLine("setTimeout('AutoFileDownload()', 3000);");
            ClientScript.RegisterStartupScript(this.Page, this.Page.GetType(), Guid.NewGuid().ToString("N"),
                                               sb.ToString(), true);
        }