Reply to comment

callclick in ie,firefox,chrome(Fire fox link button click event)

function CallClick()
{
//document.getElementById('LinkButton1').click(); //ONLY WORK IN IE
//WORK IN ALL BROWSER
window.location.href = document.getElementById('LinkButton1').href ;
return false;
}

Reply