webmethod
google maps onclick event to cause partial postback of asp.net page c#
I have used jQuery to invoke an AJAX webmethod in c#. This webmethod runs a query and stores the resulting information in a session variable. I have a gridview that has an objectdatasource that uses t[详细]
2023-01-21 10:30 分类:问答JQuery Ajax with multiple return values from ASP.NET
How can I return multiple values from JQuery.Ajax() in the success function ? I tried it: $.ajax({ type: \"POST\",[详细]
2023-01-20 07:40 分类:问答ASP.NET: WebMethod: PageMethods.GetRate is not a function
When I try to access web method I obtain error: PageMethods.GetRate is not a function; My method: [WebMethod][详细]
2023-01-19 17:43 分类:问答.NET Overload WebMethods - Possible?
I have two web methods which I wish to overload: <WebMethod()> _ Public Function GetProject(ByVal id As Int32) As Project[详细]
2023-01-19 15:26 分类:问答Making a class a full fledged webservice
I am not using Visual Studio 2010. I have a class file that I marked as a webmethod. I am able to compile it u开发者_JAVA技巧sing C# compiler targetting the .NET 3.5 framework.[详细]
2023-01-16 06:33 分类:问答Returning paged results from WebMethod?
I need to create WebMethod that will get some data from db and return that to the client. Now, assume that the amount of data is huge, so I\'d like to take and return data in parts.[详细]
2023-01-15 22:22 分类:问答Cannot call webmethod with jquery json
I use the protocol jsonp to call web methods. I use this code for the webservice: public class Service1 : System.Web.Services.WebService[详细]
2023-01-15 06:52 分类:问答Signaling web page when ThreadPool thread is completed
From a web page I start a time consuming job and update it\'s status on the UI using webmethod. Job is done in a thread:[详细]
2023-01-13 17:15 分类:问答JQuery AJAX post to asp.net webmethod never getting called
I have a web method in one of my aspx pages: [WebMethod] public static string AddDebt(int userId, int type, string description, float amount)[详细]
2023-01-12 04:30 分类:问答ASP.NET WebService how to make a struct be treated as a primitive type for WSDL and serialization
This isssue may have several aspects so please read through first. Suppose that you have a stuct with a few small ints that pack well into Int64 and while you want to use your struct as a type in C#[详细]
2023-01-11 04:57 分类:问答