Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
23k views

Call ASP.NET PageMethod/WebMethod with jQuery - returns whole page

jQuery 1.3.2, ASP.NET 2.0. Making an AJAX call to a PageMethod (WebMethod) returns the full/whole page instead of just the response. A breakpoint on the page method shows it's never getting hit. I ...
10
votes
2answers
8k views

WebMethod vs ScriptMethod

I have a .net 3.5 aspx place with a method tagged with the [WebMethod] tag. I'm calling this with jQuery, sending JSON in both directions. This all works great. My question is, what does ...
9
votes
7answers
7k views

calling an ascx page method using jquery

I know that I can call a page method with jquery using the following syntax $.ajax({ type: "POST", url: "Default.aspx/GetDate", data: "{}", contentType: "application/json; charset=utf-8", ...
7
votes
2answers
3k views

ASP.NET page methods vs web service

I am building a dynamic partial load asp.net page, I would like to use jQuery to call page methods or web service to retrieve the content HTML. page methods or web service, performance wise, which ...
6
votes
1answer
188 views

PageMethods and UpdatePanel

I have a page hierarchy as the following I want to execute a PageMethod if I click the 'SAVE' button, so I coded like the following On Button Click I called OnClientClick="return ...
5
votes
3answers
878 views

window.location change fails AJAX call

I've got a click tracking AJAX function (calls a WebMethod on an .aspx page), and I need to call it when the user clicks through to a link. Unfortunately, I'm using window.location = "newUrl" to ...
4
votes
3answers
800 views

Exporting HTML Table to Excel via Page Method

I have the following code on the client side for retrieving data from the HTML Table and then send it to the server through the page method: function dtExportToCSV(dataTable) { var elements = ...
4
votes
2answers
513 views

Framework Similar to ASP.Net AjaxPro

Currently, I'm using AjaxPro Framework (http://www.ajaxpro.info/) to call any methods in my web application from the client side. But users have some serious problems using it. (e.g success callbacks ...
4
votes
5answers
2k views

ASP.NET PageMethods and JQuery AJAX Post – How secure really is it?

I have a following scenario – and what I am really looking is real help from real people. Suggestions / Solutions ? Please. I have an extranet web site for ex. www.foo.com (asp.net 3.5) I am using ...
4
votes
2answers
1k views

PageMethods with ASP.Net MVC

I have found ASP.Net PageMethods very handy and easy to use, but I have just started developing using MVC and am not sure how to use them? What is the equivalent of PageMethods.MyFunction() in MVC ...
3
votes
1answer
67 views

Receiving dynamic object in PageMethod from Javascript

I created a new object() in Javascript, put some values into it and passed it to a PageMethod... var filters = new object(); filters.Name = $("#tbxName").val(); filters.Age = ...
3
votes
1answer
125 views

What happens to orphaned/killed async AJAX WebMethod or PageMethod calls?

What happens behind the scenes 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" before the initial ...
3
votes
1answer
431 views

Passing JSON to a PageMethod that expects a List<T> parameter

I have an ASP.NET PageMethod with the following signature: <WebMethod()> _ Public Shared Function SaveCodes(ByVal codes As List(Of Code)) As String I am trying to pass a JSON object to the ...
3
votes
1answer
711 views

How to get Ajax.Net PageMethod to return JSON

I am using an AJAX.Net to call an ASP.Net PageMethod, which returns JSON serialized JSON data ...
3
votes
1answer
1k views

ASP.Net Ajax - PageMethods Synchronous call and retrieval of results

How to ASP.Net Ajax - PageMethods Synchronous call and retrieval of results ? Currently i am doing following async call and working with data : function checkName(name) { ...
3
votes
3answers
3k views

PageMethods returning undefined result?

I have a very simple call to a PageMethod. When I step through my PageMethod in my .cs file, the value looks as expected. However, on the client side I get an undefined result. Any ideas? This should ...
3
votes
2answers
1k views

When to use a page method versus creating a web service?

Our team is trying to figure out some guidelines for using pagemethods vs. creating an actual asmx web service. Seems to me that pagemethods are primarily for one off type calls that are specific to ...
3
votes
4answers
3k views

Returning a JSON object from a PageMethod with custom formating

Is it possible to format how an object is returned as JSON from a PageMethod? ie. removing the first "d" element from the data, without writing the JSON from scratch. From { "d": { "name": "bob", ...
2
votes
1answer
74 views

PageMethod 404 only on deployed website under XP/IIS 5.1. What security settings should I be aware of?

Been trouble-shooting this for a few days now and have basically run dry of leads. Here's the code: [WebMethod] public static bool EnableEditMode() { bool successful = false; try { ...
2
votes
1answer
85 views

Why instance of the page is created when PageMethod is called from client?

As PageMethods in ASP.NET need to be static methods and marked as web method, I was in a impression that instance of that particular page won't be created when a page method is called. But when I ...
2
votes
2answers
124 views

how to secure page methods being called from JQuery?

I just have started ajax using jquery and static page behind methods. As jquery code is visible on client side, please guide how I can hide page url and its method name. I mean to ask is this way ...
2
votes
1answer
332 views

calling a PageMethod with params object[] args from jQuery

Is there a way to call a Page Method in jQuery when the page method has a "params" argument type (in C#)? I can call Page Methods all day long using jQuery if I specify the arguments one at a time, ...
2
votes
1answer
212 views

PageMethod and Partial PostBack and determine response size

is there any way out to detect the full postback is occurred or partial postback occur when we work with PageMethod. if firebug is install then how could i check the size of response. can anyone help ...
2
votes
1answer
86 views

Recommendations for authenticating Asp.net Ajax Requests using PageMethods

I am calling PageMethods for updating Gridview content in asp.net application [personal web app]. I would like to know a few recommendations with step by step actions to be taken by any developer in ...
2
votes
1answer
275 views

Globally handling exceptions in static aspx [WebMethods] in ASP.NET

The default behavior of a [WebMethod] attributed static method on an aspx page is to return the error to the caller. We are accessing these methods using json, and the only way we have found of ...
2
votes
4answers
325 views

Load a javascript function while page loads

Hi I want to run a javascript function when the page loads. But as my page derives from the master page there is no form . The is my aspx file <%@ Page Title="" Language="VB" ...
2
votes
1answer
898 views

calling vb pagemethod from ajax

Hi I have a simple aspx file with 2 text boxes and an ajax autocomplete extender attached to textbox2 <%@ Page Language="VB" AutoEventWireup="false" CodeFile="test4.aspx.vb" Inherits="test4" %> ...
2
votes
3answers
352 views

Callback function with parameters

I'm using AJAX Page Methods, but I can't seem to be able to pass the needed parameters: function getFavStatus() { //favs is a list of DOM <imgs> that I want to modify their img.src ...
2
votes
2answers
328 views

Page method multiple callbacks

I'm calling a page method on mouse over of an image slider to show an image from a database. The problem is I'm getting multiple callbacks. Does anyone know how to resolve this issue? Code which I'm ...
2
votes
3answers
630 views

How to pass int values to ASP.NET page methods from jQuery?

I am using ASP.NET page methods with jQuery. Here is my code, $.ajax({ type: "POST", url: "Default.aspx/GetRecords", data: "{}", contentType: "application/json; ...
2
votes
3answers
815 views

PageMethods security

I'm trying to 'AJAX-ify' my site in order to improve the UI experience. In terms of performance, I'm also trying to get rid of the UpdatePanel. I've come across a great article over at Encosia showing ...
2
votes
2answers
70 views

Executing only the last function called

This is the setup in short. I have a big table. Everytime a cell get focus an asyncron call to the server is done (with PageMethods) and some data is returned and updates a infobox in the page. I ...
2
votes
5answers
9k views

Call non-static method in server side(aspx.cs) from client side use javascript (aspx)

how Call non-static method in server side(aspx.cs) from client side using javascript (aspx)....? As far as I know I can call static method in server side from client side... server side : ...
2
votes
4answers
3k views

Using PageMethods with jQuery

Simply put I want to call public static methods decorated with WebMethod attribute inside my code-behind C# file from jquery.ajax to get some json and other simple stuff (in different functions). But ...
2
votes
3answers
2k views

Pass Array of Javascript objects to PageMethod

Here's the situation: I would like to iterate through a table with input controls, collect up the values and then submit them to an ASP.Net PageMethod to save the data to the database. I have the ...
2
votes
4answers
4k views

jQuery Ajax call very slow in IE, but instant in Firefox

I am performing a jQuery .ajax() call that returns a List<string> of IP addresses on a specified subnet. I use a [WebMethod] on an .aspx page to return the values. ASP.NET's built-in JSON ...
2
votes
2answers
995 views

ASP.NET AJAX: How to implement PageMethods feature of the scriptmanager in a user control

I am unable to implement PageMethods feature of the scriptmanager in a usercontrol, is a way in which this can be done?
1
vote
1answer
36 views

Asp.net ajax pagemethods not working

I have a project that originally did not use ajax. Now I want to make the page ajax enabled. What I did already is Install the ajaxToolkit and replace the web.config content with another one from an ...
1
vote
2answers
63 views

Is it possible to access server control from page method?

I would like to update a Gridviews datasource using JQuery and page methods, but I'm not sure how to access the Gridview control I created on the page. I know I can't access the instance of it, but I ...
1
vote
1answer
157 views

PageMethods not defined

I have a page with a MasterPage, in the master page, I have this: <ajaxToolkit:ToolkitScriptManager ID="scriptManager" runat="server" ...
1
vote
0answers
57 views

Can someone explain why a download is not able to be triggered from a PageMethod?

I have the following PageMethod which is being called client-side. As far as I know it should work completely, but instead nothing happens. I was able to elicit out of another S.O. member that I need ...
1
vote
1answer
59 views

Use data returned by web-service (jQuery, ASP.Net)

I have an ASP.Net-Button which, when clicked, executes client side and server side code. Under certain conditions, the execution of the latter should be prevented. <asp:LinkButton ...
1
vote
1answer
225 views

Any way to do a synchronous PageMethods call?

I'm trying to do this: function DelBatch() {var userInfo = get_cookie("UserInfo"); PageMethods.DeleteBatchJSWM(userInfo, function(result) {window.location = ...
1
vote
1answer
794 views

Calling VB.NET WebMethod Function from Javascript

I have a VB.NET function which looks like this: <WebMethod()> _ Public Shared Function AuthenticateUser(ByVal UserInfo As String, ByVal Password As String) As Boolean Dim UserName As String ...
1
vote
1answer
102 views

Can you use AJAX page methods to make non-static function calls?

Javascript: PageMethods.DragEventToEvent(event.text(), event.parent().parent().text(), cell.parent().text(), OnSucceeded, OnFailed); C# Function: [WebMethod] public static void ...
1
vote
1answer
648 views

Page Method calls from jQuery to Sharepoint

I have an application page (aspx) deployed in the _LAYOUTS folder of MS SharePoint 2010. I would like to call a method inside that page marked with the [WebMethod] attribute using jQuery. I am using ...
1
vote
1answer
222 views

Send to & decode JSON data in a server side method

i dont know how to send JSON data to server side function and also i dont know how to de-serialize the JSON data to a particular class. suppose i need to send customer related info from client side ...
1
vote
1answer
188 views

WebMethod called using jQuery returning server error when fetching large amounts of data. Is there a limitation on the data size?

I am using jQuery to call WebMethods (page methods) on a ASPX page. When I return up to 200 items, it works fine. But if I attempt to pull more than that it returns a server error. I am not sure ...
1
vote
2answers
686 views

Set Session in PageMethod (asp.net)

I need to set a couple of Session vars by calling a PageMethod using jQuery. The client side js looks like this: function setSession(Amount, Item_nr) { //alert(Amount + " " + Item_nr); ...
1
vote
1answer
276 views

Make Pagemod and Page-worker modules to work together?

I'm working on a Firefox extension project that requires me to use the TAB key to toggle through all the links on the page, extract the its URL, fetch its source code, and parse it. Currently, I'm ...

1 2 3 4