Behaviour difference observe in IE/Edge browser while opening EXCEL file

Malik701

New Member
Joined
Apr 29, 2021
Messages
1
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
  2. Web
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();
}
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,215,196
Messages
6,123,575
Members
449,108
Latest member
rache47

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top