webmethod
ASPX WebMethod seems not to be caching results
I need a couple of methods on an aspx page to cache their results to avoid lots of going to the database. I added the relevant WebMethod attributes but although the code runs, the methods are not cach[详细]
2023-02-05 18:37 分类:问答Passing (Asp.Net) Session variable (uploaded by uploadify) from webmethod to same page?
开发者_开发知识库When i try to get uploaded filename from generic handler (upload.ashx)using session its ok, no problem. I can also use webmethod on samepage and uploadify works great, but Session[\"f[详细]
2023-02-05 01:36 分类:问答Json.net: How can I return JObject from a [WebMethod]?
I am testing out json.net. I would like to use its linq-to-json syntax to return json from a function attributed [WebMethod] but I am getting errors.[详细]
2023-02-04 05:14 分类:问答What happens to orphaned/killed async AJAX WebMethod or PageMethod calls?
What happens behind the scene开发者_开发知识库s if I make an AJAX PageMethod or WebMethod call from, say, \"Default.aspx\" and then I quickly navigate away to a different page, say, \"Settings.aspx\"[详细]
2023-02-01 04:38 分类:问答How to change ASP.NET WebMethod's 'd' identifier in a JSON response, to a different name?
This works: through jQuery I\'m using a jQuery.ajax(..) call to a page e.g. Default.aspx/GetStatus having a WebMethod attribute:[详细]
2023-01-30 13:16 分类:问答ASP.NET + AJAX + WebService: string result + out parameter
In my experience I call simple web methods, like this: [WebMethod] public List<string> GetUserListByLetters(string strLetters){ ... }[详细]
2023-01-30 05:14 分类:问答<WebMethod()> attribute changes from 2.0 to 3.5
I have a method that looks like: <W开发者_运维知识库ebMethod()> _ Public Function Search(ByVal q As String) As String[详细]
2023-01-29 18:38 分类:问答Web Services and cookie handling
There\'s an web service and it depends on the cookies sent by the browser for its operations. The service works fine as long as it is being accessed by a browser, but fails when it is accessed by anot[详细]
2023-01-26 20:14 分类:问答Why is the current thread's CultureInfo not being used when parsing a DateTime parameter on a 'WebMethod' call in ASP .NET?
I have an ASP .NET Web Forms application that makes use of the \'WebMethod\' attribute for making AJAX calls from jQuery. I\'m dealing with trying to localize the application so I recently created a w[详细]
2023-01-26 06:56 分类:问答WebMethod Caches images not entering handler
I have a WebMethod that recives HTML as parameter somthing like this: Public Function ConvertHtmlToPdfListAnswer(ByVal dokument As Dokument) As Byte()[详细]
2023-01-23 09:35 分类:问答