Tagged Questions

5
votes
5answers
174 views

How to compress specific pages in ASP.NET

I have web application that in some pages I use Ms Ajax (Script Manager,Update Panel,...). In these pages I can't use compression because it conflicts with *.axd files. How I can compress specific ...
4
votes
2answers
966 views

CompositeScript without Microsoft Ajax JavaScript

I'm currently using the CompositeScript feature of System.Web.Extensions in order to combine my JavaScript files to reduce download time. However, by including any script manager, the MicrosoftAjax ...
2
votes
1answer
64 views

In Microsoft Ajax, what exactly does $find do?

I'm so confused as to what $find from Microsoft Ajax actually is. Does it just return a control in a similar manner that the $ operator from jquery or javascript's own getElementById do? If I do ...
1
vote
1answer
50 views

Asp.net MVC Ajax - Disabling button in ajax.beginform?

I'm using microsoft ajax and ajax.beginform. It's working great for model binding my partial view, but I need to conditionally disable some of the buttons in my form itself depending on what comes ...
1
vote
1answer
325 views

Add Script Reference (JavaScript) to Script Manager on Microsoft AJAX Partial Postback

I am trying to add a script reference to the script manager in the event of a Microsoft AJAX Partial Postback, ie a user clicks on a link in an Update Panel. ...
1
vote
2answers
1k views

Microsoft JScript runtime error: Unable to set value of the property 'control': object is null or undefined

I am Developing a web application by using ASP.NET 3.5, jQuery and RadAjax Telerik Control. I get Error Messages when page Loading. that is :"Microsoft JScript runtime error: Unable to set value of ...
1
vote
1answer
152 views

Why does $find(strSomeOtherRadAjaxPanel) return null?

Problem context: 1) rcbComboBoxInRadPanel is a Telerik RadComboBox. 2) rcbComboBoxInRadPanel has "OnClientSelectedIndexChange" event which fires "itemSelected." 3) rcbComboBoxInRadPanel is ...
1
vote
1answer
1k views

Javascript error in Firefox when using ASP.NET AJAX Control Toolkit

I have recently been building a website that utilizes the .NET Framework 3.5 SP1 and the AJAX Control Toolkit. The standard AJAX controls such as UpdatePanel work without problem. As soon as I add a ...
0
votes
4answers
249 views

Execute JQuery after ASP.Net Microsoft AJAX

I'm trying to execute JQuery after an ASP.Net Microsoft AJAX post back. When a user clicks on a link, Microsoft AJAX is used to update some fields in the DB and if success a label appears informing ...
0
votes
1answer
390 views

ASP.NET ScriptManager output not included in ASP.NET partial cache (ascx)

I wrote a Simple Control, that implements ScriptControl. This is holder for JQuery framework: /// <summary> /// Generic control with client behavior handled via jQuery /// </summary> ...
0
votes
1answer
75 views

What does the MS Ajax Framework use location.hash for?

I've noticed that the MS ajax framework touches the action of the default form during Sys.Application.initialize, appending location.hash to it. This is interfering with other code in my app that ...
0
votes
1answer
883 views

UpdatePanel not refreshing in Accordion

I'm using MS AJAX's accordion control. It works fine normally, but I can't seem to get it to work with an UpdatePanel. My layout is like this: <div id="accordion"> <div><a ...
-1
votes
3answers
61 views

Calling a web Method that returns a non String by AJAX [ASP.net]

i made a web function in the C# file called test it returns a simple List for testing [WebMethod(EnableSession = false)] public static List<string> test() { List<string> a = new List ...