I have use the jquery click event for open popup like this.
$("#ctl00_login1").click(function () {
$("#EmailPwd").addClass("Emailhide");
$("#Email").removeClass("Emailhide");
//centering with css
centerPopup();
//load popup
loadPopup();
});
I want to call this click event using C# Code in asp.net to open popup like this.
protected void Page_Load(object sender, EventArgs e)
{
call code here..
}