A André Jun 27, 2006 #1 Hi, What's the code in VB.net for "window.location.href" in javascript ? Thanks André
P Patrice Jun 27, 2006 #2 window.location.href is actually a client side property. I'm not sure what you are after. Server side you could use Response.redirect to direct the browser to another location than the current page.
window.location.href is actually a client side property. I'm not sure what you are after. Server side you could use Response.redirect to direct the browser to another location than the current page.
H Herfried K. Wagner [MVP] Jun 27, 2006 #3 André said: What's the code in VB.net for "window.location.href" in javascript ? Click to expand... There is no equivalent because VB.NET code is executed on the server and 'window.location.href' only makes sense on the client side.
André said: What's the code in VB.net for "window.location.href" in javascript ? Click to expand... There is no equivalent because VB.NET code is executed on the server and 'window.location.href' only makes sense on the client side.
A André Jun 28, 2006 #4 Thanks Herfried K. Wagner said: There is no equivalent because VB.NET code is executed on the server and 'window.location.href' only makes sense on the client side. Click to expand...
Thanks Herfried K. Wagner said: There is no equivalent because VB.NET code is executed on the server and 'window.location.href' only makes sense on the client side. Click to expand...