window.location.href in vb.net?

  • Thread starter Thread starter André
  • Start date Start date
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.
 
André said:
What's the code in VB.net for "window.location.href" in javascript ?

There is no equivalent because VB.NET code is executed on the server and
'window.location.href' only makes sense on the client side.
 
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.
 
Back
Top