3
votes
8answers
4k views
Problem with ScriptManager.RegisterStartupScript in WebControl nested in UpdatePanel
Hello,
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 …
8
votes
7answers
4k 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 natu …
0
votes
1answer
26 views
ScriptManager1.AsyncPostBackErrorMessage not showing error message
I've always used the following two bits of code (which use to work) to catch Ajax asyncPostBackErrors.
<asp:ScriptManager ID="ScriptManager1" runat="server" OnAsyncPostBackErro …
1
vote
3answers
261 views
ASP.NET ScriptManager causing warning in Chrome
I get the following warning in chrome developer javascript console:
Uncaught SyntaxError: Unexpected token
< http://.../Question.asmx/js (line 1)
Resource interpreted …
2
votes
3answers
526 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 …
0
votes
1answer
175 views
call js confirm from code behind
codebehind
Protected Sub btnDelete_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnDelete.Click
Dim ResourceObject As Object
Dim js As [Str …
0
votes
1answer
31 views
asp.net forms ScriptManager __doPostback
Hi,
Why does the ScriptManager ALWAYS insert the __doPostback method in javascript, even on an empty page where no controls can cause a postback?
Thank you
1
vote
1answer
40 views
Sharepoint with ASP.NET Ajax
I'm running a MOSS2007 Sharepoint website with .NET 3.5 Ajax. I'm using the SmartPart webpart to host a user control that contains an update panel.
I've added the script manager t …
1
vote
2answers
71 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
}
Sys.WebFor …
0
votes
0answers
33 views
Client-side validation breaks in IE because of PropertyProxyValidator and ScriptManager cooperation.
The specific of the project is in using Enterpise Library for Server side validation and jQuery for client-side validation. So I have the next simple form for example:
<asp:Con …
0
votes
2answers
40 views
XML Tags in asp:TextBox prevents other controls working?
I have a series of controls on an ASP page. Some are inside an UpdatePanel and some are not.
If I put an XML tag in one of the text boxes (eg, "<foo>") then all the control …
3
votes
1answer
50 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 Scr …
0
votes
0answers
56 views
ScriptManager adding script multiple times to page
So I've got a script that I'd like to add to a page using a ScriptManager, but the script gets added multiple times. The script I'm trying to add plus the call to register it (in …
0
votes
2answers
30 views
Javascript Script manager in a widget environment?
I'm creating a website that could potentially contain many widgets. These widgets are rendered using external javascript code in external js files. Some of these widgets require th …
0
votes
6answers
133 views
Use of $get in C# ASP.NET AJAX
What is the use of $get('').value in ASP.NET AJAX? Is it different from the usual C# get and set properties of the same??
