I have a ASP.Net page for our company and we are running a parallel testing to the new web site. Now, the I attached a clickable image on the old website which redirects to the new web site.
My problem is the old website can be browsed in any web browser while the new web site must only be opened using a specific web browser (due to the developers of the new web site said that it only works properly on google chrome).
All I need is when when they browse the old web site using whatever browser they have, and then click the image, it will open the new website using google chrome.
These web sites are published on the company's windows server, and all clients that connects to it has google chrome installed with them.
If there is something like: System.Diagnostics.Process.Start("chrome.exe", <url>); that will be executed on the client side (not on the server side), kindly advise.