What I am trying to do is to refresh the current .aspx page when the user clicks on an image (phmg.jpg) .
I have the following code and it works:
<a href="Currpage.aspx">
<img src="../../images/phmg.jpg" width="900" height="506"/>
</a>
I am wondering if there is a better way of doing this in asp.net. To recap, when the user clicks on "phmg.jpg" I like to refresh the current page.
Note that at the top of the page in the head tag I have the following code:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />