在设计视图中使用 html 超链接从服务器端调用 void 方法
您好,我有一个简单的查询,我无法从 html 超链接选项卡调用该方法,下面是代码:
<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() }
Hi I have got a simple query , i m not able to call the method from html hyperlink tab , below is the code:
<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() }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 PageMethods 和 jQuery 的 ajax()。
Check out PageMethods, and jQuery's ajax().