Redirecting Browser to another URL

  • Thread starter Thread starter ThomasXxLadt
  • Start date Start date
T

ThomasXxLadt

Is there a way to redirect the browser from within a c# control which
is embedded in an HTML page to another URL? I am looking for something
similar to "showDocument()" which performs the described action in
Java-Applets.

Cheers,
Thomas
 
Is there a way to redirect the browser from within a c# control which
is embedded in an HTML page to another URL? I am looking for something
similar to "showDocument()" which performs the described action in
Java-Applets.

Cheers,
Thomas

In ASP.Net you can redirect the Browser by using the method
"Response.Redirect". I think you should test it, since i don't know, if
it works for your problem.

Martin Schall
 
Is there a way to redirect the browser from within a c# control which
In ASP.Net you can redirect the Browser by using the method
"Response.Redirect". I think you should test it, since i don't know, if
it works for your problem.

No, that doesn't help. I need a client side functionality within the
control. In a Java-Applet I can do this by calling the function
"showDocument(...)". There should be an equivalent for c# applets.

Thomas
 
Back
Top