I have following markup in one of my asp.net pages.
<a href="javascript:__doPostBack('ctl00$ctl33$g_e246fa90_ed81_4990_9da8_88086176f196$Grid_Private_Pay','Sort$Created')">Created</a>
As you can see href contains javascript code, I want to execute this code in order to raise postback to server. I tried to trigger the click event of anchor tag but it seems to be not working. Is there any solution?
Thanks.