asp.net-ajax

Ajax calendar control

I had Ajax calendar. So I want to prevent user to add date in textbox which I added to him calendar to select from it. Also when he choose invalid date the Ajax calendar return him to the date of today and this not logic so I want to prevent that. ...

How to deploy SharePoint solutions using different versions of ajax extensions in a common SharePoint server?

Hello We have a common SharePoint server which runs an internal SharePoint site. Our teams deploy their SharePoint products in the server and add it to our site. Some products user .net framework 2.0 and some products use .net 3.5. So they enable ajax extenisons for the site for .net 2.0 which adds the entries for the assembly System.We...

Asp.net: save data entry form with PageMethods

The problem: I have a data entry form. I would like to save the data without page roundtrip or UpdatePanels. The solution: - the 'Save' button calls a javascript function which serialize all the fields content (client side) - the javascript function calls a web method (server side) - the web method deserialize the data and save it to t...

ajax modelpopup

model pop up show under control that have relative position and z-index small numbers like 1 10 100 in css and i cant change CSS for these controls any idea ...

Web app works in Firefox but not IE8

I've built this app that displays employee photos stored in several sharepoint folders. It also displays the employee name extracted from the file name and a previous and next button to move through the photos. The markup is surrounded by an update panel to prevent the entire page from reloading when you click to view the next photo. ...

Dialogic API for D/4PCI

Where can I find the .net API for the Dialogic D/4PCI. This is an older card. Also, what are other alternatives for an API. I would prefer to work in either C# (.net) or Java. ...

Why do I have to enable and disable radiobuttons explicitly?

When I want to change the state of radiobuttons using AJAX, I discovered that it is necessary to set the state of each radiobutton explicitly, rather than just setting Checked = true on the one that you want to have enabled. If I remove the marked lines below, I can perhaps change the radiobuttons state once or twice using the buttons, b...

Update Panel - Textbox TextChanged Event is interfering with the DropDown SelectedIndexChanged event

Basics: I have a text box (txtDepositAmount) that people can enter a deposit amount into and a drop down (ddlSelectedTerm) that sets the terms. Through these two values I calculate the APY (lblCurrentApy). Rules: If only one of the values is selected I still want to do an update on the current APY label and clear it. If either ...

In OnLoad, which of two ASP.NET controls triggered a given callback?

How do I differentiate between two triggers that can both POST callbacks to the page during OnLoad? The controls themselves will automatically trigger their callback handlers, but that is too late. The background on my issue is probably irrelevant, but ... I am creating an ASP.NET web page and I have two controls on the page that can...

Can ASP.NET MVC return a javascript response like Ruby on Rails can?

Hello. I'm diving into ASP.NET MVC and I'm coming from a Ruby on Rails background. I'm trying to understand how ASP MVC handles AJAX functionality and, after reading some of the tutorials on the ASP website, it appears they implement AJAX functionality very differently. One of the ways that RoR handles AJAX functionality is by returni...

How do I disable or remove unnecessary form elements before an ASP.NET asynchronous postback?

I'm building a shopping cart page that could potentially contain dozens of separate items. Each item has a collapsible panel that contains several form elements that can be used to customize it. Most of the cart is wrapped in an UpdatePanel so that I can avoid a full postback when the user makes changes. When there are many items in the ...

No web service found at ... Random exception issue

Hi, in production env I randomly, several times per day, recieve following error: Exception type:InvalidOperationException Exception details: Source: System.Web.Extensions Message: No web service found at: path/servicename.asmx. I log it in Application_Error method. It happens when url request is : https://path/servicename.asmx/js ...

Checkbox not retaining checked value

I have an update panel, a modalpopup extender & a gridview. The Gridview is inside the modalpop on a panel & has a checkbox for each record whose checked status i want to retrieve using javascript. (Im actually doing a validation where a user has to select atleast 1 record from the Grid View or else an alert message will be displayed w...

asp.net ajax combobox: getting ArgumentOutOfRangeException unexpectedly

I've some tables in my db with the following structure. I've two asp.net ajax comboboxes in the same update panel which is supposed to load data based on the tables mentioned above. <asp:UpdatePanel ID="updatesetloc" runat="server"> <ContentTemplate> <p> <asp:ComboBox ID="cbloc" runat="server" AutoPostBack="Tr...

ASP.NET AJAX NOBOT - is it possible to change the way it retrieves the IP address?

Hi, I want to use the AJAX NOBOT and the option to restrict the number of failed attempts from an IP address. However, access to my site goes through a proxy server so the IP address will always be the same. To get the client IP address an extra entry is added to the request header by the proxy server. Is it possible to change the...

ASP.NET: Clustered environment communication Problem

Hi all, I'm pretty noob with ASP.NET programming and i'm a bit confused on a problem that i'm facing right now. We, as devs in my company, live in a clustered environment like the one shown in figure Nothing really special. You see, IIS Websites are duplicated on evry FrontEnd Servers. Business logic resides on BackEnds that are sit...

ASP.NET MVC 2, Ajax.ActionLink resets form data

As I have an editor-list, that needs to have additional edit lines, I found this solution for the problem: Mvc list editor by Stevens Anderson this works perfectly, excepts that every time when I add a new line, the whole Form is set back to the default values. You can see the behavior in the demo of the linked page. Try to edit the val...

Format date in Ajax calendar

I had Ajax Calendar and I want to prevent user to choose date (Today or future date) I had java script code but It when I prevent me to select date earlier as (10-10-1990).Plaes any one help me. Javascript <script type="text/javascript"> function checkDate(sender,args) { if (sender._selectedDate < new Date()) { ...

restrict user when select from ajax calender

I had Ajax calender for birth date on registeration form and I tried to restrict user from select now date also I tried to limit user to select from calender birth date equal 6 years or greater than6 years.I user rang validator but I couldnot .So please any one help me. ...

Ajax server process with live interface progress status?

I have a process that retrieves html from a remote site and parses it. I pass several URL's into the method, so I would like to ajaxify the process and give a screen notification each time a URL completes parsing. For example, this is what I am trying to do: List<string> urls = ...//load up with arbitary # of urls foreach (var url in u...