2

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.

Jin Ginusuke
  • 67
  • 1
  • 1
  • 11

2 Answers2

3

This is not possible unless you have some client software that can receive a call from the website to launch Chrome. My answer can be backed by this question about IE redirection to other browser. The accepted answer is absolutely correct.

The security risk would be too great and besides windows doesn't support that kind of linking. You could write a "client" program that runs in the background waiting for a call from your website. Then the client program could launch Chrome.

Hope this helps you!

Community
  • 1
  • 1
FrostyFire
  • 3,212
  • 3
  • 29
  • 53
1

Is it your problem ? : you want to open your link via Google chrome . if yes , you cant do it ! because ASP.net , PHP and etc .. a server side language and cant do it ! , its not possible without have any application on clients .