Привет, я получил простой запрос, я не могу вызвать метод из вкладки html hyperlink, ниже приведен код:
<a href="#" id="startUploadLink">Start Upload</a>
$("#startUploadLink").click(function () {
$('#<%=FileUpload1.ClientID%>').uploadifyUpload();
//I want to call a method here which is on server side which is bindData()
return false;
});
aspx.cs:
protected void bindData()
{ caravans.InsertImages() }