Tagged Questions

283
votes
25answers
94k views

How to format a JSON date?

I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
39
votes
9answers
21k views

ASP.NET MVC Ajax.ActionLink with Image

is there anyway to have an image act as an ajax actionlink? I can only get it to work using text. Thanks for your help!
33
votes
7answers
8k views

Unexpected Caching of AJAX results in IE8

I'm having a serious issue with Internet Explorer cachings results from a JQuery Ajax request. I have header on my web page that get's updated everytime a users navigates to a new page. Once the page ...
25
votes
10answers
4k views

ASP.NET AJAX vs jQuery in ASP.NET MVC

Which one is better to use in ASP.NET MVC?
21
votes
12answers
1k views

Speeding up an ASP.Net Web Site or Application

I have an Ajax.Net enabled ASP.Net 2.0 web site. Hosting for both the site and the database are out of my control as is the database's schema. In testing on hardware I do control the site performs ...
19
votes
8answers
5k views

How to not serialize the __type property on JSON objects

Every object I return from a WebMethod of a ScriptService, is wrapped into a d JSON object. That's ok. But I don't want the additional __type property to be served to the client, since I do manual ...
19
votes
4answers
16k views

Jquery AJAX with ASP.NET WebMethod Returning Entire Page

I'm doing some simple tests (in preparation for a larger project) to call an ASP.NET WebMethod using JQuery AJAX. In my example, my WebMethod returns a simple string. However, when I attempt to call ...
19
votes
6answers
13k views

Using jQuery for AJAX with ASP.NET Webforms

Anyone know of a link to a good article/tutorial for getting started using jQuery for AJAX calls rather than ASP.NET AJAX? I'm trying to avoid using UpdatePanels entirely in this app, which I haven't ...
16
votes
3answers
8k views

.NET AJAX Calls to ASMX or ASPX or ASHX?

What is the most efficient way of calling some business logic from javascript on the client side using AJAX? It looks like you can call a [WebMethod] on an aspx directly from javascript (in my case ...
16
votes
8answers
23k views

How to return JSON from a 2.0 asmx web service

Update: I have since moved on to another project, and I am now able to use .Net 4.0. As a result, this question is no longer relevant to me. From the number of views on this question, though, it must ...
15
votes
4answers
6k views

How can I upload a file via ASP.NET MVC and show a progress bar?

I'm looking to allow a user to browse and upload a file to the server in my ASP.NET MVC application. If it is possible, I'm interested in adding a progress bar to show how much of the file has been ...
15
votes
13answers
46k views

Problem with ScriptManager.RegisterStartupScript in WebControl nested in UpdatePanel

I am having what I believe should be a fairly simple problem, but for the life of me I cannot see my problem. The problem is related to ScriptManager.RegisterStartupScript, something I have used many ...
15
votes
6answers
13k views

File uploading in AJAX updatepanel without full postback

I have a update panel, in the update panel I have fileupload control and button control, On button click, I need the file that I have upload in the fileupload control in updatepanel. Exact scenario, ...
15
votes
14answers
4k views

ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom

If given the choice, which path would you take? ASP.NET Webforms + ASP.NET AJAX or ASP.NET MVC + JavaScript Framework of your Choice Are there any limitations that ASP.NET Webforms / ...
14
votes
5answers
1k views

Produce “toast” messages like StackOverflow

One of the issues I think about every time I build my web application is how messages should appear to the end-users I tried message boxes like those in windows applications, but they look so bad ...
14
votes
5answers
28k views

Jquery asp.net Button Click Event via ajax

I was wondering if anyone can point me in the right direction. I have an asp.net button with a click event (that runs some server side code). What i'd like to do is call this event via ajax and ...
14
votes
9answers
11k views

How to disable postback on an asp Button

I have an asp button. It's server-side so I can only show it for logged in users, but i want it to run a javascript function and it seems when it's runat="server" it always calls the postback event. ...
14
votes
15answers
3k views

How to stop ASP.NET from changing IDs in order to use jQuery

I have this label control in my web page <asp:Label ID="Label1" runat="server" Text="test"></asp:Label> And when the page rendered the id of the control changes to something like this ...
14
votes
5answers
19k views

How to call a client side javascript function after a specific UpdatePanel has been loaded

How is it possible to call a client side javascript method after a specific update panel has been loaded? Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler) does not work ...
14
votes
7answers
11k views

Deserializing Client-Side AJAX JSON Dates

Given the following JSON Date representation: "\/Date(1221644506800-0700)\/" How do you deserialize this into it's JavaScript Date-type form? I've tried using MS AJAX JavaScrioptSerializer as ...
13
votes
5answers
294 views

Commonly-accepted approach in MVC for form within jQuery dialog

There seem to be several ways to integrate jQuery dialogs with ASP.NET MVC. Has a specific approach emerged as the commonly-accepted best-practice way to do so? As an example: I have a list page ...
13
votes
4answers
2k views

how to know if the request is ajax in asp.net mvc?

anybody how can I know if the request is ajax ? (I'm using jquery for ajax)
13
votes
7answers
1k views

Microsoft's AJAX Toolkit vs. jQuery

Our team has been using Microsoft's AJAX Toolkit since the days of Atlas. In a bit of naivety we missed the jQuery/Prototype phenomenon until a month or two back. Until now, we have always ...
13
votes
3answers
4k views

How would you handle errors when using jQuery.ajax()?

When using jQuery's ajax method to submit form data, what is the best way to handle errors? This is an example of what a call might look like: $.ajax({ url: "userCreation.ashx", data: { ...
12
votes
7answers
252 views

Options for ASP.NET page with matching client-side and server-side markup?

Suppose I'm building a StackOverflow clone using webforms ASP.NET and jQuery. The Question page has a question, several answers, and comments under each. Requirements: Users can post new answers and ...
12
votes
6answers
558 views

Preventing Users from Working on the Same Row

I have a web application at work that is similar to a ticket working system. Some users enter new issues. Other workers choose and resolve issues. All of the data is maintained in MS SQL server 2005. ...
11
votes
4answers
316 views

Is there a way to trap all errors in a AJAX-web service?

I'd like to trap any unhandled exception thrown in an ASP.NET web service, but nothing I've tried has worked so far. First off, the HttpApplication.Error event doesn't fire on web services, so that's ...
11
votes
5answers
3k views

jQuery DataTables server-side processing using ASP.NET WebForms

Problem: jQuery DataTables server-side processing using ASP.NET WebForms. Solution: Darin Dimitrov answered the question using an example which pages and sorts, but doesn't do any searching. Here's ...
11
votes
5answers
17k views

Reference asp.net control by ID in javascript?

When asp.net controls are rendered their ids sometimes change, like if they are in a naming container. Button1 may actually have an id of ctl00_ContentMain_Button1 when it is rendered, for example. I ...
11
votes
6answers
15k views

ASP.NET UpdatePanel Time Out

I'm making a request from an UpdatePanel that takes more then 90 seconds. I'm getting this timeout error. "Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerTimeoutException: The ...
10
votes
7answers
9k views

ASP.NET - Passing JSON from jQuery to ASHX

I'm trying to pass JSON from jQuery to a .ASHX file. Example of the jQuery below: $.ajax({ type: "POST", url: "/test.ashx", data: "{'file':'dave', 'type':'ward'}", ...
10
votes
5answers
13k views

How to Convert JSON object to Custom C# object?

Is there an easy way to populate my C# Object with the JSON object passed via AJAX? //This is the JSON Object passed to C# WEBMETHOD from the page using JSON.stringify ...
10
votes
6answers
2k views

How can I get ASP.NET AJAX to send its JSON response with GZip compression?

I have compression enabled within IIS7 and it works as expected on all responses except for those constructed by ASP.NET AJAX. I have a web service that provides data to the client. When the web ...
10
votes
9answers
9k views

Implementing jQuery's jgGrid with ASP.Net and JSON formatting

Has anyone been able to implement the JQuery grid plugin, jqGrid? I'm trying to implement the JSON paging, and I feel like I'm getting close, but that I am also being swamped by inconsequential ...
9
votes
4answers
1k views

Ajax request return 200 OK but error event is fired instead of success

Hi I have implemented one Ajax request to my site where I am calling one of page. It always return 200 OK but execute failed event I have tried lot of things but I am not getting where I am doing ...
9
votes
3answers
5k views

How to set Request.IsAuthenticated to true when not using FormsAuthentication.RedirectFromLoginPage?

I am using Form Authentication and sending an Aajx request to the server for authentication. Based on the json result, the client decides where to go and what to do. That is the reason I am not using ...
9
votes
3answers
3k views

Difference between Client Callbacks and Ajax Page Methods - ASP.NET

Based on my understanding, both of them essentially do the same thing (lets us execute a server side method from JS). Are there any differences? Also, Ajax Page Methods can be implemented either ...
9
votes
4answers
5k views

Advantages and disadvantages of using Ajax update panels in ASP.NET application

What are the advantages and disadvantages of using Ajax update panels in ASP.NET application. Is there any alternatives available to avoid the use of Ajax update panel?
9
votes
5answers
20k views

Problem sending JSON object succesfully to asp.net WebMethod, using jQuery

I've been working on this for 3 hours and have given up. i am simply trying to send data to an asp.net web method, using jQuery. The data is basically a bunch of key/value pairs. so i've tried to ...
8
votes
1answer
172 views

differences between doing ajax using a page method, a web service and a custom http handler

I'm looking to create json objects in the client and then transfer these objects back to the server for processing. These are the following options I'm considering: a page method a web service a ...
8
votes
3answers
2k views

Pass array to mvc Action via AJAX

I'm trying to pass an array (or IEnumerable) of ints from via AJAX to an MVC action and I need a little help. the javascript is $.get('/controller/MyAction', { vals: arrayOfValues }, function ...
8
votes
2answers
768 views

ASP MVC Ajax Controller pattern?

My MVC app tends to have a lot of ajax calls (via JQuery.get()). It's sort of bugging me that my controller is littered with many tiny methods that get called via ajax. It seems to me to be sort of ...
8
votes
1answer
749 views

CSRF Protection in AJAX Requests using MVC2

The page I'm building depends heavily on AJAX. Basically, there is just one "page" and every data transfer is handled via AJAX. Since overoptimistic caching on the browser side leads to strange ...
8
votes
5answers
1k views

Manually making AJAX calls in ASP.NET and C#

I want to write my own AJAX in ASP.NET, and not use the ASP.NET ScriptManager, etc. WHY? I like doing stuff manually and knowing how stuff works from the inside, so I just want to do it for myself. ...
8
votes
5answers
206 views

Using Ajax, is it better to generate aditional markup in the server or the client side?

Which is better in AJAX request, Response with ready HTML or response with just data and write HTML using JavaScript, and this JavaScript will use a predefined HTML template to put the coming data ...
8
votes
6answers
11k views

Problem with textbox inside updatepanel - not causing OnTextChanged event

I have the following situation: I have a textbox inside an ajax updatepanel. Wherever the user types in the textbox I must display a message (different message that depends on the user typed data). ...
8
votes
7answers
4k views

Extending Forms Authentication Timeout When Making AJAX Calls With jQuery

I'm looking to rewrite a pretty intensive CRUD type ASP.NET page to utilize ajax calls (specifically jQuery ajax). My concern in doing this is that the user may be on this page longer than the forms ...
8
votes
5answers
3k views

Best framework for implementing iGoogle or pageflakes (ASP.NET)

For my Enterprise software solution (so open source is not so good) I want to implement a flexible dashboard which is component base. So I can keep changing it by adding new components, withouth ...
7
votes
1answer
61 views

IE alternative to window.stop() (cancel all pending requests)

I'm looking for an alternative to window.stop() for IE. I have tried document.execCommand('Stop'), but it doesn't seem to work. I'm trying to cancel a XMLHttpRequest which is called from within a ASP ...
7
votes
3answers
521 views

How to make the browser back button take you back through AJAX calls?

I have a page with a lot of dynamically generated check boxes on it. As the users click these check boxes a lot of content on the page changes dynamically via ajax. The end users are complaining that ...

1 2 3 4 5 73