0
votes
1answer
22 views
How to update an datagrid with webmethods
Hi guys,
I choose the method to update my data every second with a javascript PageMethod and WebMethod.
With much returns via an object I can set hunderts of labels if it is nae …
0
votes
1answer
18 views
How to update multiple labels in an WebMethod (Asp:net / Ajax)
Hi Guys,
I have around 20 labels to update.
In relation to performance and padeload-weight, I choose WebMethods to realize it (Much smaller then updatepanel + timer).
So, how to …
4
votes
2answers
68 views
Adding Entity Framework entities (one-to-many) in JSON via ASP.NET WebMethod
I am currently working on a project utilising both the Entity Framework (the version packaged with the .NET Framework version 3.5 SP1) and lots of AJAX-based functionality, which I …
0
votes
3answers
36 views
Access to QueryString / Session from a static Method?
Hi guys,
I use ASP.Net and a static WebMethod / PageMethod to do some async work.
My question is how to access my queryStrings and Session variables here?
I tried "HttpContext.Cu …
0
votes
1answer
18 views
Problem deserializing json date on server (asp.net)
Hi,
I am currently trying to implement the wonderful jQuery plugin 'week calendar' (here) in my simple asp.net website. I have set up a couple of [WebMethods] to send data to the c …
2
votes
1answer
56 views
WebMethod return as String (without <?xml tag)
[WebMethod(EnableSession=true)]
[ScriptMethod(UseHttpGet=true, XmlSerializeString = false)]
public string RaiseCallbackEvent(string eventArgument)
returning value started with & …
3
votes
3answers
125 views
Help me understand web methods?
I have a method on a page marked with the webmethod and scriptmethod tags..
The method returns a collection of objects to a jquery function as JSON data with no hassles and withou …
0
votes
3answers
348 views
ASP.NET Web Forms jQuery AJAX Pass Multiple Paramaters to Web Method
I am calling a Web Method in the code behind with a Method Signature that has 4+ strings accepted. I am creating a params variable and using it to add all input fields I want to p …
0
votes
1answer
51 views
Why does WebMethod in .aspx page ignore DataContract - DataMember attributes
When I send back a Class, it ignores the DataContract - DataMember attributes and serializes all members of the class as well as sends the class name in the "__type" flag as well. …
0
votes
4answers
125 views
Why does IIS wild card mapping break my AJAX calls?
I'm trying to use jQuery to make some AJAX calls, but because I have wild card mapping (to .NET) in IIS 6 turned on, it doesn't seem to work. Disabling the mapping makes everythin …
0
votes
1answer
190 views
ASP.NET Webmethod in aspx.cs page not able to access Page.Request object
Hello,
Does anyone know how to access HttpRequest.Cookies within a static method with [WebMethod] attribute from an aspx.cs page?
It won't let me do it because method is static …
1
vote
2answers
143 views
How to get SessionID on a request where EnableSessionState=”False”
Hello,
I want to be able to get the SessionID of the currently authenticated session in a WebMethod function where EnableSession = false.
I cannot set EnableSession=true on this …
0
votes
3answers
121 views
A question about WebMethods
Hello,
I have a page and it has webmethods I can use theese from the aspx page via ScriptManager, I am wondering If anyone can access theese methods from the outside of the page,if …
0
votes
1answer
54 views
Web Methods works with html button but not asp:button
I'm am looking at the code in this article on Web methods and I've tried to implement it.
The article works as designed but when I swap the HTML button for an asp:button I get diff …
0
votes
1answer
48 views
Alternatives for storing web method postback data (besides Session)
What are the alternatives to storing data in the HttpContext.Current.Session collection are available, in order to keep track of items for ajax postbacks that are executed via web …
