asp.net-ajax

How to add keyboard shortcuts in ASP.NET for Focus / ButtonClicks

Hi there! How can I add some keyboard shortcuts (ctrl/alt/shift + something) to focus textboxes and/or perform button clicks? And, ss it possible to have a Keyboard shortcut to call some method in my .cs code-behind? Can anyone me tell me how? ...

animation in PopupControlExtender

I want to add an animation to PopupControlExtender .... so , what is the Animations that we can put in PopupControlExtender...?:: i download this code ... html code: <html> <head > <title>Untitled Page</title> <link href="StyleSheet.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="form1" runat="serve...

Access to session when making ajax call to Asp.net MVC action

Hi, i have a controller action being called using an ajax request, but when i tried to access session (HttpContext.Session["key"]), i dont have any of my session keys populated. How can i have access to my session keys when i make a call using ajax. ...

Horizontal and Vertical Accordion

Hi can anyone help me creating horizontal and vertical accordion in asp.net I have use Ajax Toolkit Accordion but can not change its orientation ------- ------- ------- created using ajax toolkit ------- ||||| ||||| looking for this ||||| ||||| any help please.. ...

SCORM compliant LMS in asp.net

I want to develop a LMS with SCORM compliance.What exactly does it mean.Is it that my lms should be able to create SCORM compliant content or does it mean that my application should be able to view SCORM compliant content.And how i'm going to achieve this in DOTNET ...

Asp.net MVC 2.0 DataAnnotations Validation doesn't emit correct JSON

I'm trying to get setup using the DataAnnotations validator in ASP.Net MVC 2.0 Beta, but with the following model: public class Foo { [Required] public string Bar {get;set;} } And the following code in my view: <%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<Foo>" %> <!-- later on --> <% Html.EnableClientVa...

Telerik RadTabStrip doesn't render correctly when loaded via AJAX

Hi, I'm loading a user control dynamically and displaying it using a RadAjaxPanel. The problem is that my RadTabStrip doesn't render correctly. The skin hasn't been applied and I only see part of the text. If I do a complete refresh of the page then it displays perfectly fine and from that point on it will render correctly even if I loa...

Post method not working in firefox

The following ajax function call not retrive the data in firefox3.0.16 if i used post type,But it is working good in IE7 ,if i used get method i can retrive the data in both the Browser(IE and Firefox).Why? function ABC() { $.ajax({ type: 'post', dataType: 'json', url: Url, success...

ScriptManager.RegisterClientScriptInclude does not work in UpdatePanel

I've read through the net but haven't found a solution to the following problem. I have this example page (_ScriptManager.aspx) with a ScriptManager, an UpdatePanel, a MultiView with two Views and two LinkButtons two switch between the views. The second view contains some functionality which I want to load a JavaScript file for (_ScriptM...

asp scriptmanager vs ajax toolkitscriptmanager

I am working on ajax based web application. I am getting typical "Javascript out of memory exception" on modelpopup dialog when ever I used asp ScriptManager on my home.master page But it is working perfect with ajax toolkit ScriptManager. Is there any difference b/w ASP ScriptManager vs Ajaxtoolkit ScriptManager. Another note is ...

ViewState is not saved across postback the second time the page postsback.

I have an ASP.NET Page that contains a User control called ReportCtrl (my own control that has nothing to do with Reporting services etc.). ReportCtrl has a User control called TreeViewCtrl which contains a Telerik TreeView with some funky business logic to display nodes. The TreeView is placed inside a ASP.NET AJAX panel. When a user ...

Problem when accessing another page while first page is processing a file

I have a web app which processes files and writes the data to a database. This process can take up to 2 minutes. Let's say this is done on ProcessFile.aspx. I wanted to ensure data integrity so I wrapped all the database processing in a TransactionScope. The problem occurs when I am processing a file and then try to access another page ...

popup div like http://www.kelkoo.co.uk/

go to http://www.kelkoo.co.uk/ and click on the down arrow of the category link a popup div will appear ...i need similar kind of pop up div.the data will be loaded dynamically and in the time of loading a loading image will also appear in the middle of div. plz see these image loading image loaded image N.B plz notice if i click fo...

Next row in grid

how to get the next row immediate to the row which i inserted into gridview dynamically.how to retrive the value ...

AJAX Control Toolkit Calendar Extender v2.0.50727, script timeout

I have a repeater with 400+ AJAX calendar extenders embedded in a repeater. The appears to be too many for IE 8 to render/initilize before it times out, any suggestions on how to get this work without cutting down the number of calendar extenders? Visual Studio 2005, C#, IE 8. Thanks. ...

Microsoft JScript runtime error: 'Sys' is undefined

I have a page with the following code on it: <script type="text/javascript" language="javascript"> /// <reference name="MicrosoftAjax.js" /> Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler); function EndRequestHandler(sender, args) { ToggleTimeDiv(); } </script> When the pag...

need help regarding $.ajx({})?

Hi, The following is the code snippet what Im trying with ASP.NET MVC with ajx call to Action. But action is not calling. Please help me? $.ajax({ type: "POST", url: "/Sample/TestSubmit", data: $.toJSON(result), contentType: "application/json;charset=utf-8", dataType: "json", success: function(msg) { ...

iterating table contaning another table?

I have a table with 6 cells, with input fields, textarea,check boxes,normal text(td), and last column is a table. while iterating through the table , I am facing problem with last cell having table.how to iterate this again? need help. I have to pass this entire data to controller. ...

Which Javascript history back implementation is the best?

There are implementations for history.back in Micrososft AJAX and jQuery (http://www.asual.com/jquery/address/). I already have jQuery and asp.net ajax included in my project but I am not sure which implementation of history.back is better. Better for me is: Already used by some large projects Wide browser support Easy to implement Li...

Using jquery , how to check whether a table cell is empty or not?

Using jquery , how to check whether a table cell is empty or not? Please help me. ...