I am working on a C#/Angular project. Due to some third party controls, some of the website features do not work on IE. There is an email which goes out containing link to a page. When I click the link it is opening by default in IE. Is there a way I can default it to open in Google Chrome? Here is my code and url syntax:
string ProjectURL = String.Format("<a href=\"https://dev.mylink.net/MyApp/#/mycomponent\">Project link</a>");
string EmailBody = "<p>" + ManagerName + " (" + ManagerID + "),</p><p>The request " + ReqNumber + " submitted by " + UserName + ", on " + CreationDate + " is ready for Approval.</p><p>Please visit the following URL to Approve this request:" + ProjectURL + "</p>";
P.S. The url contains a "#" as well.
I do not think there is a way to do it since the default browser defined in the client computer.