This should be a naive question but too bad, I don't know.
In my handling code of a button click, I need to write command to navigate to another page of my choice. What should I write ?
Regards.
This should be a naive question but too bad, I don't know.
In my handling code of a button click, I need to write command to navigate to another page of my choice. What should I write ?
Regards.
Oh, I got it!
It should be response.redirect
That depends, you should also take a look at Server.Transfer()
Hi, gijsj,
Thanks for your suggestion. Aftering reading some document, I guess that server.transfer should be more effective for web page on the same server whereas the response redirect works for other sites and it requires additional HTTP traffic over the network. I need server.transfer in my current case.
Thank you.