Internet Explorer open Excel macro enable file in EXCEL-2016 and keep the file path as https link. While in Edge Chromium it save in local drive and than open the file to lose link with https. At the end in EXCEL ThisWorkbook.path show local link instead of https link. How to resolve this issue when dealing with Microsoft Edge and Excel to keep the link intact with https.
Is there any setting change required in EXCEL registry or other property to get the path of original file.
We HIT a MAJOR BLOCKER due to IE open dialog box misbehave.
ASP.NET
Sample Code 1:
string downloadpath = "https://......./folder/filename.xlsm";
system.diagonastics.process.start (download path);
Sample Code 2
Public Void ProcessRequest(HttpContext context)
{
HttpResponse response = HttpContext.Current.Response
HttpReqeust request = context.Request;
string session = HttpContext.Current.Session.SessionID;
.....
.....
.....
response.ClearContent();
response.ClearHeaders();
response.Buffer = true;
response.ContentType = file.ContentType
response.BinaryWrite (file.FileData);
response.AddHeader("Content-Disposition","FileName=Somefilename.xlsm");
response.Flush();
}
Is there any setting change required in EXCEL registry or other property to get the path of original file.
We HIT a MAJOR BLOCKER due to IE open dialog box misbehave.
ASP.NET
Sample Code 1:
string downloadpath = "https://......./folder/filename.xlsm";
system.diagonastics.process.start (download path);
Sample Code 2
Public Void ProcessRequest(HttpContext context)
{
HttpResponse response = HttpContext.Current.Response
HttpReqeust request = context.Request;
string session = HttpContext.Current.Session.SessionID;
.....
.....
.....
response.ClearContent();
response.ClearHeaders();
response.Buffer = true;
response.ContentType = file.ContentType
response.BinaryWrite (file.FileData);
response.AddHeader("Content-Disposition","FileName=Somefilename.xlsm");
response.Flush();
}