asp.net-ajax

How can I tie the visibility of a pane to another control?

So I have a two radio buttons. If RadioButton1 is selected, I want Panel1 to be visible and Panel2 to be hidden. If RadioButton2 is selected, I want Panel2 to be visible and Panel1 to be hidden. Is there a way to do this without requiring a postback? ...

Why this ReorderList can't be saved to database?

Hi, I followed the following link http://weblogs.asp.net/justinsaraceno/archive/2008/02/22/reorderlist-with-objectdatasource.aspx and manged to make the orderlist work fine except one thing and probably the most importent thing which is saving the reorder back to the database what I changed First I'm using it as a c# web form insid...

pound character(#) in asp.net ajax

iam using asp.net and asp.net-ajax every thing happens on browser urls are of format http://somepage#page1 http://somepage#page2 http://somepage#page3 now all these urls are in a secured folder when logged in user directly types (or use bookmark) a url like below, he is shown that page http://somepage#page2 -- (bookmarked url lyin...

Deploying ASP.net Ajax 1.0 and 3.5 web application on same server

Hello All, We have a production Server which has ASP.net 2.0 Application running with Ajax 1.0 and corresponding toolkit (Toolkit version 1.0.20229). I have been asked to move another application build using ASP.net 3.5 which also utalizes latest ASP.NET AJAX and corresponding toolkit (Toolkit Version 3.0.X). Can these two applicatio...

What is the story with shared data synchronization using the MS AJAX 4.0 client library?

Consider a LOB site, where users work on a large shared dataset. Using Wcf Data Services on the server side and the DataContext and DataView from the AJAX 4.0 client library on the client side to enable CRUD operations. Getting the data on the initial load is straight forward, just query the server and display the data (in a table for e...

ASP.net Ajax Postbacks

Hello, Just wanted to know when using updatepanels if the whole page will be posted back or just the controls inside the updatepanel. thanks ...

Why isn't this function executing?

I'm having an annoying problem which I have asked some questions about already, now I finally tracked it down, and I think I'm close to a solution, with your help of course. I have two JavaScript files, both using jQuery, but only one of them are running. The one working starts with "$(document).ready(function() {.." and works just fine...

Best calendar control available in .net to implement drag and drop from treeview onto calendar

I want in my asp.net application is to create a schedule.The events should be dragged from the treeview and dropped onto the calendar control to create the schedule.What i want is that someone could suggest what is the best calendar control available in the market to do so.My budget is 300$.If there is some other way of achieving this th...

Check pending changes before doing a another task on a ASP.NET Ajax page.

Hello! I'm developing an ASP.NET web application with AJAX. I have a page where the user can edit some information: it has a list of item, the user select one item, click on Edit button and then edit item's name and item's description on two textboxes. If user click on another item since he doesn't save his changes, he can click on ed...

Ajax.BeginForm working but not reloading the partial view in the update target id

Everything works as expected and the action returns a partial view (called Features to the features div with the correct Model which is a dataset). In other situations where I faced the same problem (the partial view not being reloaded), the cause was that I was using the BeginForm with the correct parameters in the wrong place, but in ...

ASP.Net Ajax ToolKit Controls: Fails when trying to add to Toolbox in VS 2008

I am getting an error when I trying to Right Click in the Tab, and select Choose Items. I am getting following error and VS is closing. The Exception unknown software exception (0xe0434f4d) occurred in the application at location 0x7c812a6b Any help is appreciated. ...

How to not load ReorderList's InsertItemTemplate on init

Hi There, I have an ajax ReorderList, with some Insert items. on some conditions for some users I would like to hide the InsertItemTemplate, how cand I achieve this? Thanks in advance ...

asp mvc.net Dashboard suggestions.

I'm currently building an inhouse mvc.net reporting app. So far the pages charts etc have been relatively hard coded. i.e. 1 page for this chart, another page for this table. But I'd like to extend it so users have more control over what they're looking at. iow 'A dashboard'. I'd like suggestions on what other people have used and wha...

Asp.Net FileUpload doesn't work on Ajax UpdatePanel

Hello. I have an ASP.Net FileUpload inside an UpdatePanel. When I click on a save button inside the same updatepanel and check on serverside if that control hasFile it is allways false. Where is my error? Do I need to post the entire page? Thank you! ...

Ajax Control Toolkit on a commercial website.

Hi! I'm developing a Asp.Net website that will be used for a lot users. Would you recomend the use of Ajax Control Toolkit on these kind of website? Update: I'm trying to imagine the worst scenario. Maybe with one user it will work perfectly. By the way, I only use this controls from Ajax Toolkit: ValidatorCalloutExtender, MaskedEdi...

ASP.Net MVC Ajax RenderPartial not rendering correctly

I have an AJAX form which returns a partial view, but instead of the target div getting updated, when I submit, only the partial view is shown. As far as I can tell, I have everything set up the way it's supposed to be, what's going wrong? <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<ApplianceSurvey.Models.Ite...

PopupControlExtender value set problem

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.NewFolder1.WebForm1" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt...

getting error while opening a popup through ScriptManager.RegisterClientScriptBlock

hi i have a gridview inside an updatepanel, in the gridview i have image buttons on click of which an popup should open, but instead an javascript error occurs as 'sys.webforms.pageRequestManagerServerErrorException: Invalid Postback or callback argument. Event Validation is enabled using in configuration or <%@Page EnabledEventValidati...

AutoCompleteExtender shows long numeric values in scientific notation

Hi everyone! I'm having an issue with ajaxToolkit:AutoCompleteExtender in ASP.NET. When an item is numeric and longer than 17 digits, it's shown in scientific notation. Does anyone know how to solve this? I googled it for a while and couldn't find anything. Thanks! ...

how to save and retrieve cookies using ajax webservice calls

Hi I have web app which stores certain things on a page in a cookie when the page posts back in case the user doesn't finish what they're doing and come back later. But now I must do a javascript time-out and actively save the info to the cookie rather than wait for the user to postback. All my cookie code is on server side where I use...