Instead of Redirect.Response...help

  • Thread starter Thread starter trint
  • Start date Start date
T

trint

Ok,
I have a Windows app that I want to, at a click of a button, bring up
various urls. Can I use Redirect.Response, or is their a better
option?
Thanks,
Trint
 
Trint,

Response.Redirect is only available in ASP.NET applications.

You can pass the URL to the static Start method on the Process class,
and it will load the URL in the default browser. If you want to display the
content in your own app, you might want to consider using the WebBrowser
control (either through ActiveX of if you are using .NET 2.0, the one in the
System.Windows.Forms namespace).

Hope this helps.
 
Back
Top