ajax.net

ICallbackEventHandler Vs. UpdatePanel

Does implementing a ICallbackEventHandler gain any performance with respect to ViewState over an UpdatePanel or is it very much the same? The background is this - I have a MS chart server control on the page and will want to refresh data after a page load. Will an ICallbackEventHandler make it any faster than an UpdatePanel? ...

Im using Ajax tabs and in that im using grids which has sorting and paging .

Hi, Im using ajax tabs and placed five grids in five tabs . each grid has paging and sorting option which are working fine with grids . what should i do to keep the focus on grid in each tabs when i sort the grid. Can anyone help on this. Thanks smartdev ...

problem in jQuery popup and ajax

hello, i am having problem when i do the ajax call then my popup stop working. i want to call ajax when we click on "ok" button of popup. thanks in advance here is my code: <div id='container'> <div id='content'> <div id='confirm-dialog'> <asp:Button ID="cmdBackToHomePageTop" runat="server" Text="<< Back to Home ...

How to get the selected value from ajax.net ComboBox through javascript

Hello everyone, I need to get the selected value from an ajax.net combobox throught javascript so that I can do some client side validation. What's the best way to do this? Thanks, I've been able to get the value with this: var combo = $get('ddlComarcas'); var comboHidden = $get('ddlComarcas_HiddenField'); var o4 = combo.getElements...

Run a JS method before / after every AJAX call

I'm using AJAX.NET including update panels, web service calls, client controls etc. In may page I include 3rd party javascript file that makes keep-alive call for limited preconfigured amount of time (say 30 min). this script is my session keeper. every time the user have an interaction with the browser - i want to run a method in this...

Creating plugin to implement zero knowledge password proof

We are MCA students. As a part of our curriculum project, we are creating a plug-in to implement zero knowledge password proof. We are purely new to developing browser applications. We need help. Thanks in advance. ...

Redirect to Denied page after Ajax Login

Hi, folks, In my asp.net website i use Ajax login(that the part of standart Ajax Extension for asp.net). When i don't login and try to access to the denied page, i got redirected to page http://mywebsite.com/AccessDenied.aspx?ReturnUrl=/Admin/default.aspx, after i've logged in and have permission to access denied page, i still stayed ...

AJAX.NET and FIPS

We have a few sections of our application that are using AJAX.NET 5.7.25.1. Our server administrators have enabled FIPS and we are running into the following error: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms. Call stack: at System.Security.Cryptography.MD5CryptoServiceProvider..cto...

Modalpopup not working properly asp.net ajax

Hi All! I have an updatepanel,a modal popup extender inside that and an image button to open the pop up(it has not any click event). The 'div' for the modal pop up is outside the updatepanel. In the modal pop up the records come in a table with a link in each table row.When the link is clicked,a javascript function causes a hidden contr...

update panel not working

i am having two list box which perform add remove item functionality which are controlled by four buttons and o each button click there happen to be post back but i don't want it to be flicker for which i am using update panel like this but it still made post back wats wrong with this explain me this <asp:UpdatePanel ID="button" runat=...

JQuery AJAX post to asp.net webmethod never getting called

I have a web method in one of my aspx pages: [WebMethod] public static string AddDebt(int userId, int type, string description, float amount) And in the aspx page I have the JQuery $(".addDebt").click(function (e) { e.preventDefault(); var userId = $("[id$='txtUserId']").val(); var type = $("[id$='...

Ajax is undefined

This is my code. When I run this I get an error: "Ajax is undefined". The error line is highlighted by black letters. function funGetName() { var id=document.getElementById("Cust_Id").value; var URL="Default.aspx?TODO=getName&custId="+id; alert(id); var ajax=new Ajax.Request(URL, { method:'get' }); } ...

Ajax Modal Popup Progress Bar/Indicator

Hello all, I am having problems trying to create a modal popup progress bar in Ajax 3.5. The following works okay, but I cannot see my aspx page in VS 2008 due to the changes I made to my style sheet. It appears that the div tag i am using sits on top of the page. Here is the code: <asp:UpdatePanel runat="server" ID="UpdatePanel1"> ...