can I use ajax to call C# code behind method?
-
I know I can use ajax to call web method of web-service. can I use ajax to call a simple code behind method? Thanks!
-
Answer:
You can use the WebMethod attribute http://www.singingeels.com/Articles/Using_Page_Methods_in_ASPNET_AJAX.aspx
Elad Benda at Stack Overflow Visit the source
Other answers
Yes you can. With a little feature called page methods. Decorate your codebehind method with the [WebMethod] attribute and you can call it from your page via javascript and within your WebForms html. See this: http://www.singingeels.com/Articles/Using_Page_Methods_in_ASPNET_AJAX.aspx Also see http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/
gideon
Yes, you can. See http://www.rajeeshcv.com/2008/10/aspnet-ajax-calling-server-side-methods-from-client-side/. It requires putting a ScriptManager tag on your page, and decorating your methods with an attribute.
wsanville
You can do it with or without a script manager. I would suggest looking into the ajax method in jQuery (http://api.jquery.com/jQuery.ajax/) as well as these links: http://api.jquery.com/jQuery.post/ http://www.infinitelooping.com/blog/2011/05/20/using-jquery-ajax-to-call-web-methods/ http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/
Gary.S
Related Q & A:
- How Can I use .net dll in C program?Best solution by Stack Overflow
- How can I properly read data from bar code scanner?Best solution by Stack Overflow
- Can I use a photo of myself as my avatar? If so, how do I do it in Yahoo messenger?Best solution by Yahoo! Answers
- How can I make a phone call to a cruise ship?Best solution by traveltips.usatoday.com
- How can I get inbound/outbound call process?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.