to be clear (which my post wasn't)... - Jean-Pierre |
Sunday, August 19, 2007 7:39 AM
|
to be clear (which my post wasn't)... The problem I have is how to trigger
to load of the new page on the button click.
I tried this which I used in my c# forms:
System.Diagnostics.Process.Start(http://www.philcollins.com);
but that was a bit optimistic ;-) |
 |
Navigate to url on button click - humbleapprentic |
Monday, August 20, 2007 6:32 AM
|
Jean Pierre,
Hopefully this could help you. You can say:
Page.Response.Write("" +
strUrl +
...and that will give you a pop-up (or popup) window showing the site you
want.
Let me know if that solves your question!
--
Cheers,
humble.apprentice |
 |
If you'd like to do it server side which your code post suggests, try - ChadClark |
Monday, August 20, 2007 11:28 AM
|
If you would like to do it server side which your code post suggests, try
HttpContext.Current.Response.Redirect('your url'); |
 |