I have a hyperlink as
<a href="" id="link1">Click</a>
I have do enable a post back action whenever this link is clicked.
We can do
<a href="" id="link1" onclick="javascript:location.reload()">Click</a>
However, I want to do a page postback and not a page reload.
Is it possible?