通过 Jquery 使用 Ajax 调用函数/数据库更新
我正在创建一个简单的“这有用吗?”带有“是”和“否”对象的表单 - 使用 ASP.net Web 表单。
我需要使用 jquery 通过 ajax 完成提交,以防止用户在同一页面上多次投票。目前,我在相关页面后面的 C# 代码中有两种方法 Like_Click 和 Dislike_click。
任何人都可以给我一些关于通过 jquery 进行简单 ajax 的任何合适演练的指示或链接(我是 ajax 新手!)
我已经研究过在每个方法上使用 [WebMethod] 标识符,但并没有真正完全理解这个方法。
谢谢
Im creating a simple "Was this useful?" form with Yes and No objects- Using ASP.net webforms.
I need the submission to be done via ajax using jquery, to prevent a user from voting multiple times on the same page.. currently i have two methods Like_Click and Dislike_click in the C# code behind the page in question.
Can anyone give me some pointers on or a link to any suitable walkthroughs for simple ajax via jquery (I'm new to ajax!)
Ive looked at using the [WebMethod] identifier on each of the methods but do not really understand this method fully.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在寻找 jQuery 的 post 函数。查看示例。你会想做一些类似的事情:
You are probably looking for jQuery's post function. Check out the examples. You'll want to do something along the lines of:
您可以尝试如下所示的
Webmethod,如下所示,
在此处查看更多详细信息 在 ASP.NET 中从 jquery 调用 WebMethod
You can try something like below
Webmethod is shown below
take a look more details here Call WebMethod from jquery in ASP.NET