link or hyperlinkCKChandra Sekhar K15yAsked Dec 27, 2010, 2:48 AM2k.NETOn a link ( or hyperlkink) click , how to call a server side fuction
Suthish Nair15y agoPosted Dec 27, 2010, 3:49 AMyou can handle only a button event handler from javascript.function CallMe() { document.getElementById('<%=btn1.ClientID%>').click(); } Or use page methods to call a webservices that having your server side method.
Suthish NairPosted Dec 27, 2010, 3:49 AM
function CallMe() {document.getElementById('<%=btn1.ClientID%>').click();
}
Or use page methods to call a webservices that having your server side method.
Madhu KPosted Dec 27, 2010, 3:39 AM