c# - Forcing a full page load -


i full page load when click button unfortunately within update panel.

i okay use onclick or onclientclick, means can use either asp.net or javascript perform full page load.

by full page load mean whole page (i know how post works)

why not use anchor, style button if needed.

staticly

<a href="somepage.aspx">reload</a> 

or dynamically

<a href="<%=request.rawurl %>">reload</a> 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -