I've a C# asp.net webapp hosted, which should start an InternetExplorer process on the server on a button click from the client side browser.
protected void Button1_Click(object sender, EventArgs e)
{
Process.Start("IExplore.exe", "www.google.com");
}
Unfortunately this is not working out fine for me. But when I debug this, it works. Please help me to achieve this.
Thanks, /Aravind