Can I use PageMethods in .net1.1?I have to call a server side method call from client side?
How to use
PageMethods.MyMethod();
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no such construct available in .NET 1.1. You can try servicing calls using XML Web Services or using your own HTTP handler, but it won’t work the way it does with ASP.NET AJAX in 2.0 (unless you go through the effort to recreate it).
There was a tool called AJAX Pro that will produce something kind of like page methods, however, I doubt it’s maintained any longer.