scriptmanager Questions

6

Solved

I have a MVC4/Web API project and I created a test page that consumes the Web API using Ajax. Testing was going great, so I began working on the UI. One thing I needed to do was to populate some fo...
Magnetron asked 1/10, 2013 at 17:24

6

Solved

protected void timer1_Tick(object sender, EventArgs e) { foreach (RepeaterItem item in rpChat.Items) { TextBox txt = item.FindControl("txtChatMessage") as TextBox; if (txt != null) { message...
Borehole asked 25/7, 2012 at 5:59

5

Solved

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 ...
Tamboura asked 15/12, 2011 at 8:29

1

Is there a secure way of whitelisting dynamically created scripts in a WebForms project using CSP (Content Security Policy)? Using unsafe-inline like below it works but not recommended. context.R...
Helles asked 8/1, 2019 at 15:59

6

Solved

I got this error: ASP.NET Ajax client-side framework failed to load with the error: 'Sys' is undefined. The error qppears in IE on the bottom (error message), and appears only when i'm r...
Archy asked 26/12, 2011 at 19:8

7

Using: Visual Studio Express 2013 for Web to write a .NET 4.5.1 site. Project initially built on the default "Create New Website" template therefore the parts in question were added to my project ...
Ake asked 5/4, 2014 at 18:0

2

Solved

What is the difference between scriptmanager and scriptmanagerproxy in asp .net?
Potassium asked 21/1, 2012 at 19:9

2

Solved

Is there any other way to display alert message from back end in asp.net web application rather than this. ScriptManager.RegisterStartupScript(this, GetType(), "alertMessage","alert('Called from c...
Uptown asked 27/6, 2016 at 8:14

1

I have 2 pages named as :Abc.aspx and popupAbc.aspx Now on Abc.aspx i have below button on click of which i am opening popupAbc.aspx as pop up: <asp:Button ID="btnOpenChildAbcPopup" runat="ser...
Disinterested asked 30/1, 2016 at 6:46

2

I am using the ajax timer control inside an update panel. <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Timer ID="Timer1" runat="server" Interval="1000...
Bongbongo asked 15/2, 2014 at 12:6

4

Solved

I have used code like this in the past to successfully pop up an alert message on my asp.net webpage. Now it is not working. I can't figure out why. ScriptManager.RegisterStartupScript(this, typeo...
Stringed asked 14/2, 2011 at 15:36

5

Solved

I have a UserControl that contains an UpdatePanel which wraps some other controls. The UserControl will be used on some pages that already have a ScriptManager and other pages that do not have a Sc...
Peridotite asked 16/3, 2009 at 15:34

5

Solved

I'm experiencing a AjaxToolkit Calendar display error in production only. Locally when debugging, this problem does not exist and the calendar datepicker works perfectly. All of the other posts rev...
Liberate asked 15/10, 2013 at 21:36

3

I am trying to user EnableCdn property in ScriptManager. Basically I have this piece of code in my master page file: <asp:ScriptManager ID="MainScriptManager" runat="server" EnablePartialRender...
Quitrent asked 14/8, 2012 at 9:33

2

I copied some code to solve a problem with running JavaScript after an AJAX postback in ASP.Net. Unfortunately the new code gave me the following error when doing a build: The name 'ScriptManager'...
Jenifer asked 6/1, 2014 at 0:59

5

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...
Lavinia asked 22/11, 2011 at 4:28

1

Solved

i want to include latest jquery in my web application. Bydefault jquery 1.7.1 is getting load. i know following code is responsible for that. but what should i do to load jquery 1.10? <asp:S...
Dell asked 12/3, 2014 at 11:23

7

Solved

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 environm...
Wolves asked 8/10, 2008 at 17:42

4

Solved

I want to call static server-side methods from JS so i decide to use ScriptManager control on my site. So i have a master page, with such structure: <%@ Master Language="C#" AutoEventWireup="tr...
Overscrupulous asked 27/5, 2013 at 14:13

1

Solved

Below, I am receiving this error: I have narrowed the problem code to JQuery Mobile 1.0 or greater and Asp.NET ScriptManager. I added a new Web Forms Project to Visual Studio 2012 and included ...
Hieronymus asked 26/11, 2012 at 2:2

1

Solved

What are the differences between ScriptManager and ToolkitScriptManager? I found only one convincing reason: that ToolkitScriptManager improves page performance. If so why use ScriptManager?
Karyoplasm asked 14/6, 2011 at 18:58

1

Solved

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 expir...
Pulmonic asked 15/10, 2011 at 14:22

3

Solved

Following is the web site environment I created: I have a Master page. I have created a Child page from it. I have placed Script Manager on the Master page. Now I want to access that Master p...
Dereism asked 22/12, 2011 at 9:4

3

Hi I have an aspx page in which i have the following code <asp:ScriptManager ID="scriptManager" runat="server" AsyncPostBackTimeout="500" EnablePageMethods="true"> </asp:ScriptManager&...
Featheredge asked 15/8, 2011 at 6:41

3

Solved

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 ...

© 2022 - 2024 — McMap. All rights reserved.