Tagged Questions
The scriptmanager tag has no wiki summary.
18
votes
8answers
25k views
Add ScriptManager to Page Programmatically?
I am developing a WebPart (it will be used in a SharePoint environment, although it does not use the Object Model) that I want to expose AJAX functionality in. Because of the nature of the ...
15
votes
13answers
46k views
Problem with ScriptManager.RegisterStartupScript in WebControl nested in UpdatePanel
I am having what I believe should be a fairly simple problem, but for the life of me I cannot see my problem. The problem is related to ScriptManager.RegisterStartupScript, something I have used many ...
15
votes
1answer
1k views
How can you tell if a method is being run in UpdatePanel postback?
How can I tell if a method is running in the context of an AJAX postback (i.e as the result of a UpdatePanel (asynchronous) postback)?
According to egoldin Page.IsAsync is a very common confusion ...
9
votes
3answers
155 views
RegisterClientScriptBlock parameters usages in real scenarios?
http://i.stack.imgur.com/dVjHt.jpg
I never understood the real usage of the Control , type,key usages of this class.
In general Ive always used with : this , GetType() , "xx"
but now I truly want ...
8
votes
4answers
530 views
WebResource.axd and ScriptResource.axd load very slowly
Under normal circumstances the two .axd files load at normal speeds to the browser, i.e. a few hundred milliseconds. I can see them load normally along with all the other page elements by looking at ...
7
votes
2answers
420 views
How to retain script block on a partial postback?
This is a problem I'm facing in a webapp I'm currently working on.
So instead of cluttering the question with unrelated code, I recreated the problem in an isolated, simplified webapp that only ...
5
votes
2answers
218 views
How do I use constructor of a remote Page to create an Object in my Greasemonkey UserScript?
The page on which my userscript will run has a namespace, the namespace defines a constructor function. I would like to create an object using the same constructor and use methods of the object in my ...
5
votes
3answers
773 views
Can the ASP.NET ScriptManager be made to work with the Windows FIPS security policy?
If you enable the "Use FIPS compliant algorithms for encryption, hashing, and signing" security policy option in Windows, attempting to use many of the cryptographic classes in the .NET Framework will ...
5
votes
2answers
401 views
How can I call web service methods from javascript?
Is there any way to call web services from javascript? I know you can add in a script manager to pull in the web services but I can't figure out how to access the functions from javascript once I've ...
5
votes
1answer
3k views
How do I disable chunked transfer-encoding when using compressed dynamic content?
I want to disable chunked transfer encoding on my web server, in order to avoid this bug:
http://support.microsoft.com/kb/871205 . Unfortunately, I need to support IE6 on Win2k, so they cannot install ...
5
votes
2answers
6k views
Problem with ScriptManager.RegisterClientScriptBlock and jQuery in Internet Explorer 8
I want to use jGrowl plugin for jQuery (http://stanlemon.net/projects/jgrowl.html#samples) to display some messages on a page. To do this, I call the ScriptManager.RegisterClientScriptBlock method ...
4
votes
1answer
98 views
How do I force ScriptManager to serve CDN scripts over SSL
We have a site served on a web farm. The farm is behind an SSL Accellerator which handles the encryption. This means that our IIS servers see all incoming connections as http, even though users all ...
4
votes
1answer
4k views
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 ...
4
votes
2answers
948 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 ...
3
votes
2answers
105 views
UpdatePanel with input type other than text in html5
I am developing an open source project for rendering HTML5 using ASP.NET. Here you can take a look:
http://asphtml5.codeplex.com/
now I have a problem with update panel in posting back the input ...
3
votes
1answer
147 views
Script control is not a registered script control
I have a page that uses CustomerDetails.ascx. It uses CM.ascx. Inside CM.ascx I use AJAX Data Controls GridView with ID="gdvRecommendation".
Sometimes when I browse to the page I get the following ...
3
votes
1answer
48 views
Use ScriptReference and ScriptManagerProxy to load script only if IE 8 or earlier?
I got the ScriptManager and ScriptManagerProxy to talk to jquery using this technique. But the ScriptReference tag doesn't seem to have a way to deal with this:
<!--[if lte IE 8]>
<script ...
3
votes
1answer
82 views
ScriptManager.axd will not cache
OK, this is driving me crazy. I've searched for hours & tried almost everything, but scripts downloaded with ScriptManager.axd will not cache. They ALWAYS end up marked as no-cache with a ...
3
votes
1answer
137 views
AJAX SciptManager causing problems
I'm trying to get a ScriptManager working in .NET 3.5 but getting a scriptmanager exception. I've just removed all of the UpdatePanels from the page and refactored everything into UserControls so the ...
3
votes
1answer
755 views
Difference between script manager and toolkit script manager
My question is what are the differences between script manager and toolkit script manager. i searched the internet and found only one convincing reason is that toolkit script manager improves the page ...
3
votes
4answers
1k views
How do I get rid of the IE8 ssl warning message "Do you want to view only the webpage content that was delivered securely?” with ScriptManager?
A login page on our asp.net website uses https – while almost all of our other pages do not. On this login page, IE8 users receive the “Do you want to view only the webpage content that was delivered ...
3
votes
3answers
216 views
Proper way to include scripts in an asp.net page
I've got an ASP.NET application that uses a mixture of ASP.NET AJAX (Including UpdatePanel) and jQuery written by several developers of differing backgrounds.
Some included scripts within the ...
3
votes
3answers
258 views
what is difference, if we write script manager with end tag and script manager as a empty tag in asp.net
what is difference if we write script manager with end tag and script manager as a empty tag in this format :
<asp:ScriptManager runat="server">
</asp:ScriptManager>
and script manager ...
3
votes
1answer
294 views
“Too much recursion” error when using intanceof over typeof?
I was making a function to convert all dates in an object to strings and when I used the following function I got a error in FF "too much recursion". (It also fails in IE and chrome)
function ...
3
votes
2answers
6k views
Only one instance of a ScriptManager can be added to the page
I had an ASP UpdatePanel to update a gridview which worked fine, now I wanted to also use AjaxControlToolkit for some of the controls in there, but after wiring up everything when I run I get an error
...
3
votes
2answers
1k views
How to execute javascript once an update panel refreshes (Can't get Sys.WebForms.PageRequestManager.getInstance().add_endRequest(); to work)
I'm trying to run javascript once an update panel has refreshed. I've read a few places that you can use code similar to this:
function codeToRun() {
//Code Here
}
...
3
votes
1answer
679 views
ASP.Net ScriptManager globally setting ScriptMode in Machine.Config
All of our applications have Debug="False" in the web.config and Release DLL's.
We have a number of Applications that use ScriptManagers now for .net Ajax implementations. The ScriptManager has a ...
3
votes
3answers
3k views
Disable ScriptManager on certain pages
I have a script manager on my Master page. There are one or 2 content pages that I need to remove the webresourse.axd from, as it is causing issues with other javascript on the page
How can I disable ...
3
votes
2answers
3k views
How to emulate ScriptManager.RegisterStartupScript() in ASP.NET MVC project
I am using ASP.NET MVC project and jQuery to handle async requests. Sometimes for an async request I need an initialization JavaScript snippet to be returned and executed together with an HTML snippet ...
3
votes
3answers
2k views
What exactly is the point of the ScriptManager's EnablePartialRendering Attribute
Why would one want the EnablePartialRendering attribute to ever be "false" if building AJAX functionality into pages? Seems counter-productive. I've read here and there some things one may want to do ...
2
votes
1answer
54 views
Disable ScriptManager script consolidation in development?
In an ASP.NET site, I have a ScriptManager control on a Master page and ScriptManagerProxy controls all over the place. In most cases I use the <compositescript> block to combine scripts into a ...
2
votes
1answer
392 views
ScriptManager globalization issue
I'm having a problem with the asp:ScriptManager not working correctly under SharePoint. I have set EnableScriptGlobalization="true" to be able to use the Sys.CultureInfo object of ASP.NET AJAX, but ...
2
votes
1answer
425 views
AddThis.com - ScriptManager
I am trying to register a JS file after a postback from an Update Panel. I am trying to get AddThis.com to work after a postback. It works if I set the multiview.activeviewindex equal to 1. However If ...
2
votes
5answers
2k views
Register javascript inside User Control using C#
I want to call javascript function from User Control using C#. For that i am trying to use
ScriptManager.RegisterStartupScript(this, typeof(string), "alertbox", "javascript:ShowPopup('Select a row ...
2
votes
3answers
1k views
ScriptManager adding script multiple times to page (duplicates)
This is the exact same question as this unanswered one from May.
(edit) Note: this unanswered post exactly describes the behavior - extra scripts being added in the <head> by ...
2
votes
2answers
192 views
Controlling the order of <script> tags created by ScriptManager
I am successfully including a javascript resource by calling ScriptManager.RegisterClientScriptResource at the end of OnPreRender in my custom control. However, the resulting script tag is being ...
2
votes
2answers
179 views
2
votes
2answers
439 views
ASP.Net AJAX - IE 6/7 Memory Usage?
We're carrying out testing of our ASP.Net AJAX application, and are finding memory usage in Internet Explorer 6 & 7 increases by at least 2mb for each page refresh - whether refreshing the same ...
2
votes
1answer
135 views
Can someone give me the source code for the ScriptManager (asp.net)
I know I can load the symbols for the class but i can't get it to work. I tried everything so i give up.
I only need the code for this class. It's because i am using a custom script manager and i ...
2
votes
1answer
260 views
How do I use ScriptManager.GetStateString()?
According to the MSDN documentation, ScriptManager.GetStateString() "Retrieves a string that contains key/value pairs that represent the state of the Web page."
When I call the method it returns ...
2
votes
3answers
2k views
ASP.Net ScriptManager and UpdatePanel ignoring javascript once posted back
I am having major issues using UpdatePanels on a website. The problem is that when i use a ScriptManager, all client side JavaScript that was active when the page was originally loaded is lost once an ...
2
votes
0answers
236 views
JScript intellisense with ScriptManagerProxy
I've got a problem making my ScriptManagerProxy expose registered scripts.
When I add a ScriptManager, everything works as expected and the scripts are reflected correctly, but whenever I change it to ...
2
votes
1answer
560 views
disable/hide script manager
I am using scriptmanager on a mobile site but due to massive amount of data page gets from couple of script sources it loads slow on older phones. I have a class where I deduct phone capabilities and ...
2
votes
1answer
291 views
How do I detect if a scriptmanager is on the page?
How do I detect if a scriptmanager is loaded on a page? Some aspx pages have it and others don't and I need a user control to understand this so that it can either load it if needed and also for ...
2
votes
1answer
2k views
How can I update the ScriptManager from a .ascx Web User Control in DNN?
I've created a Web Service that I need to use in my .ascx page. I can't just add this:
<asp:ScriptManager ID="OWUScripts" runat="server">
<Services>
<asp:ServiceReference ...
2
votes
3answers
4k views
Parser error when using ScriptManager
I have an ASP.NET page which has a script manager on it.
<form id="form1" runat="server">
<div>
<asp:ScriptManager EnablePageMethods="true" ID="scriptManager2" ...
1
vote
0answers
53 views
ASP CascadingDropDown control does not reload on postback
I have a web form page that contains two modes: View and Edit. When in view mode, I do not load the CascadingDropDown control. When in edit mode, I do load the CascadingDropDown control.
When in ...
1
vote
2answers
157 views
Ajax Calendar Control within usercontrol is not working
I'm using a Ajax Calendar Control within a usercontrol and for one page that references the calender it works fine but for the other page although i can t see any different references or anything when ...
1
vote
1answer
57 views
Use ScriptManager Without Extra JS Files?
When I create a new ASP 4.0 WebSite in VS2010 and examine it via the IE9 Developer Tools, I only see a single JavaScript file hiding behind WebResource.axd. This is expected, but as soon as I add a ...
1
vote
1answer
129 views
Scriptmanager on one page, but the Panel on another
Im having a .Master page with
<asp:ScriptManager ID="ScriptManager" runat="server" />
<asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
...