active questions tagged asp.net-ajax - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:11:41Z http://stackoverflow.com/feeds/tag/asp.net-ajax http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1836997/converting-an-ajax-control-to-a-drop-down 0 converting an ajax control to a drop down Sophie 2009-12-03T01:01:12Z 2009-12-04T02:15:02Z <p>Situation--> there are two ajax controls used....</p> <p>The first one </p> <p></p> <p>acts as a prompter, that is, the person types say a letter l in the textbox, and the options starting with l are diplayed for the user to click and select.</p> <p>The second ajax control </p> <p></p> <p>also acts a prompter, that is, when you type a letter l in the second textbox, it displays al the options, but only restricted to the options available WITHIN the option selected in the first text box.</p> <p>I want to convert the second ajax control into a drop down, that is, all the options should appear restricted to the options available WITHIN the option selected in the first text box, but as a drop down list, not a prompter. How can this be achieved?</p> http://stackoverflow.com/questions/1844345/asp-net-3-5-refresh-some-values-in-a-usercontrol-when-some-action-is-performed-i 0 ASP.NET 3.5: Refresh some values in a UserControl when some action is performed in another UserControl Dave 2009-12-04T01:38:20Z 2009-12-04T01:41:59Z <p>OK, this is my situation; I have a MasterPage. On the left hand side is a UserControl for navigation. In this UserControl I have another UserControl which shows details for the current "active" selection. </p> <p>What I want to do; When a user selects, say, a Customer in the main content area I want to populate pertinent details in the ActiveSelection control (mentioned above). The only approach I've found so far is to store the relevant Customer ID in the Session then redirect back to myself. The ActiveSelection control can then retrieve this and do its thing. Far from ideal as the current page gets refreshed and its' state lost.</p> <p>Note: Not sure if this is relevant but the content area of the MasterPage consists of a Panel control (rather than a ContentPlaceHolder) and UserControls are dynamically added to this Panel (not my design - of course). Shouldn't make any difference though...</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1842860/why-does-asp-listbox-take-so-long-to-render-in-ajax-update-panel 0 Why does ASP ListBox take so long to render in AJAX update panel? Scott 2009-12-03T20:55:42Z 2009-12-03T23:44:37Z <p>I have a problem when updating the source of an ASP ListBox in an AJAX update panel. When I set the source of the ListBox to a large dataset, I would assume it would take a small amount of time to render due to the number of items. However, when the DataSource is switched at run-time to a smaller set of items, it takes just as long to clear it. If you go from a small set of items to a small set of items this is lightning fast. Maybe I'm doing something wrong. I'm using the Visual Studio 2008 item template for an <code>AJAX 1.0-Enabled ASP.NET 2.0 Web Application</code>. I downloaded that from <a href="http://download.microsoft.com/download/2/4/1/24178c52-ae77-4547-b656-5ad776b1b08f/ASPNETAJAXVS2008.msi" rel="nofollow">Microsoft</a>. </p> <p>Here is my code (Full source zip below): </p> <p>Default.aspx</p> <pre><code>&lt;%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="TestingAJAXComboLoadTimes._Default" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server" /&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:ListBox ID="myListBox" runat="server" Rows="12" Width="100%" DataTextField="Display" DataValueField="Value" AutoPostBack="True" /&gt; &lt;asp:Button ID="myButton" runat="server" Text="Change List" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Default.aspx.vb</p> <pre><code>Partial Public Class _Default Inherits System.Web.UI.Page Private _ListA As IList(Of MyModel) = New List(Of MyModel) Private _ListB As IList(Of MyModel) = New List(Of MyModel) Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load LoadData() If Not Page.IsPostBack Then myListBox.DataSource = _ListA myListBox.DataBind() End If End Sub Private Sub LoadData() For x As Integer = 0 To 5000 _ListA.Add(New MyModel("testing A - " &amp; x, x)) Next For x As Integer = 0 To 50 _ListB.Add(New MyModel("testing B - " &amp; x, x)) Next End Sub Private Sub SwitchDataSource() If IsALoaded Then myListBox.DataSource = _ListB Else myListBox.DataSource = _ListA End If IsALoaded = Not IsALoaded myListBox.DataBind() End Sub Private Sub myButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles myButton.Click SwitchDataSource() End Sub Public Property IsALoaded() As Boolean Get Return CBool(ViewState("IsALoaded")) End Get Set(ByVal value As Boolean) ViewState("IsALoaded") = value End Set End Property End Class </code></pre> <p>MyModel Class (contained within Default.aspx.vb) </p> <pre><code>Public Class MyModel Private _Display As String Private _Value As Integer Public Sub New(ByVal display As String, ByVal value As Integer) _Display = display _Value = value End Sub Public ReadOnly Property Display() As String Get Return _Display End Get End Property Public ReadOnly Property Value() As Integer Get Return _Value End Get End Property End Class </code></pre> <p>I didn't modify the web.config file, but here it is for completeness: </p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;system.web&gt; &lt;pages&gt; &lt;controls&gt; &lt;add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/controls&gt; &lt;/pages&gt; &lt;!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --&gt; &lt;compilation debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx"/&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;system.web.extensions&gt; &lt;scripting&gt; &lt;webServices&gt; &lt;!-- Uncomment this line to customize maxJsonLength and add a custom converter --&gt; &lt;!-- &lt;jsonSerialization maxJsonLength="500"&gt; &lt;converters&gt; &lt;add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/&gt; &lt;/converters&gt; &lt;/jsonSerialization&gt; --&gt; &lt;!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. --&gt; &lt;!-- &lt;authenticationService enabled="true" requireSSL = "true|false"/&gt; --&gt; &lt;!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and writeAccessProperties attributes. --&gt; &lt;!-- &lt;profileService enabled="true" readAccessProperties="propertyname1,propertyname2" writeAccessProperties="propertyname1,propertyname2" /&gt; --&gt; &lt;/webServices&gt; &lt;!-- &lt;scriptResourceHandler enableCompression="true" enableCaching="true" /&gt; --&gt; &lt;/scripting&gt; &lt;/system.web.extensions&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration="false"/&gt; &lt;modules&gt; &lt;add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name="WebServiceHandlerFactory-Integrated"/&gt; &lt;add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> <p>Here is my <a href="https://code.google.com/p/ajax-listbox-loadtime/" rel="nofollow">Google Code</a> project, and my <a href="http://ajax-listbox-loadtime.googlecode.com/files/TestingAJAXListBoxLoadTimes.zip" rel="nofollow">Source Code</a>. Can you tell me why it takes so long to clear the items and set a new list of items? </p> <p>Thank you, </p> <p>Scott</p> http://stackoverflow.com/questions/1835165/asp-net-collapsiblepanelextender-does-not-work-in-ie7 0 ASP .NET - CollapsiblePanelExtender does not work in IE7 John M 2009-12-02T19:16:13Z 2009-12-03T21:00:05Z <p>I am running the ASP .NET AJAX Toolkit 3.5.</p> <p>I have setup a panel with a collapsablePanelExtender and it works in Firefox 3.5 but not in IE7! In IE7 all the "collapsed" panels never shrink - activating the button does nothing.</p> <p>My code:</p> <pre><code>&lt;asp:ImageButton ID="btnA" runat="server" ImageUrl="~/Image/expand.gif" /&gt; &lt;asp:Panel ID="pnlA" runat="server" &gt; &lt;!-- grid --&gt; &lt;asp:GridView ID="gridA" runat="server" AllowPaging="True" AllowSorting="True" DataSourceID="sdsA" GridLines="Vertical"&gt; &lt;/asp:GridView&gt; &lt;/asp:Panel&gt; &lt;cc1:CollapsiblePanelExtender ID="cpeA" runat="server" Enabled="True" TargetControlID="pnlA" CollapsedSize="0" ExpandedSize="300" Collapsed="true" ScrollContents="true" ExpandControlID="btnA" CollapseControlID="btnA" ExpandDirection="Vertical" ExpandedImage="~/Image/collapse.gif" CollapsedImage="~/Image/expand.gif" ImageControlID="btnA" AutoExpand="false" SuppressPostBack="true"&gt; &lt;/cc1:CollapsiblePanelExtender&gt; </code></pre> <p>Is there something wrong with the code?</p> <p>The DOCTYPE I have been using is:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; </code></pre> <p>I also tried:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" &gt; </code></pre> <p><strong>UPDATE1:</strong></p> <p>It looks as though clicking on the button resulting in the panel 'hiding' for a brief moment before it re-appears.</p> http://stackoverflow.com/questions/1840397/how-to-call-an-event-when-a-specific-item-on-checkboxlist-is-clicked 2 How to Call an event when a specific item on CheckBoxList is clicked? Vitor Reis 2009-12-03T14:54:34Z 2009-12-03T18:34:17Z <p>Hello guys,</p> <p>I've got a CheckBoxList, which is populated via .DataSource, getting some items from the database. Each one if this items got it's ID according to the ID on its database record.</p> <p>What I need is, when the user clicks item with ID 34, it shows him a panel/popup... I already have everything, the popup and all. Just don't know how to capture this last item cliked.</p> http://stackoverflow.com/questions/1841316/asp-net-ajax-creating-a-postback 0 ASP.NET AJAX: Creating a postback Correl 2009-12-03T16:58:47Z 2009-12-03T17:50:11Z <p>I would like to cause a post back that occurs only once by inserting some AJAX into the page after a specific event occurs.</p> <p>Currently I have:</p> <pre><code>string script = "&lt;script language='Javascript'&gt;" + "__doPostBack('GetSpreadsheet', '');" + "&lt;/script&gt;"; Page.ClientScript.RegisterStartupScript(this.GetType(), "DownloadExcel", script); </code></pre> <p>However, after I do this, every post back has an event target of GetSpreadsheet instead of just the first one. What am I doing wrong?</p> http://stackoverflow.com/questions/350291/when-is-it-ok-to-disable-event-validation-on-a-page 1 When is it ok to disable event validation on a page? brendan 2008-12-08T17:49:09Z 2009-12-03T15:43:31Z <p>I am using ASP.NET ajax to dynamically add/remove controls from a page without using full postbacks. The UI is very complicated. Under certain scenarios, when a control on the page causes a full postback, after changing the controls via async postbacks, I get this error:</p> <p><a href="http://stackoverflow.com/questions/228969/aspnet-invalid-postback-or-callback-argument-event-validation-is-enabled-using">http://stackoverflow.com/questions/228969/aspnet-invalid-postback-or-callback-argument-event-validation-is-enabled-using</a></p> <p>I can fix it by setting EnableEventValidation="false" at the page level. </p> <p>What are the implications of doing this? Are there times when it is ok to do this or is this a hack? </p> http://stackoverflow.com/questions/1026624/most-commonly-used-ajax-controls 0 Most Commonly used Ajax Controls Wondering 2009-06-22T11:21:49Z 2009-12-03T13:00:02Z <p>Hi All, I am learning AJAX, and so I wanted to know what are the most commonly used asp.net ajax controls. EDIT: Other than Update Panel, Scriptmanager, Timer.</p> http://stackoverflow.com/questions/1837331/startup-script-not-firing-during-partial-refresh 0 Startup Script Not Firing During Partial Refresh Bullines 2009-12-03T02:48:46Z 2009-12-03T05:10:12Z <p>I have a User Control, named MyUpdateControl, that fires a startup script - its HTML is simply:</p> <pre><code>&lt;div id="updatableArea"&gt;&lt;/div&gt; </code></pre> <p>The startup script is added in the User Control's OnLoad():</p> <pre><code>string doUpdateScript = String.Format( "DoUpdate('{0}')", someValue); this.Parent.Page.ClientScript.RegisterStartupScript(typeof(Page), "DoUpdateScript", doUpdateScript); </code></pre> <p>The MyUpdateControl User Control is sometimes contained within an Update Panel in another User Control:</p> <pre><code>&lt;asp:UpdatePanel ID="myUpdatePanel" runat="server" &gt; &lt;ContentTemplate&gt; &lt;UC1:MyUpdateControl ID="myUpdaterControl" runat="server" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>In those cases, the script is only fired when the page first loads. It never fires during an asynchronous postback. How can I ensure that it's also called during asynchronous postbacks? </p> http://stackoverflow.com/questions/1835919/select-dom-elements-using-asp-net-ajax-similarly-to-how-jquery-does-it 0 Select DOM elements using ASP.net AJAX similarly to how Jquery does it Darwyn 2009-12-02T21:24:25Z 2009-12-02T22:50:34Z <p>I'm trying to select a particular set of div elements and change their height properties to auto. The jquery code I use to do that at the moment is:</p> <pre><code>$("div#TreeView1 td &gt; div").css("height","auto"); </code></pre> <p>Unfortunately I have to use the MS javascript lib (despite my protests). How can I do something similar using Microsoft's ASP.net AJAX?</p> http://stackoverflow.com/questions/1596511/deploying-asp-net-mvc-2-preview-2-with-areas 2 Deploying ASP.NET MVC 2 Preview 2 with Areas Ozzie Perez 2009-10-20T18:36:11Z 2009-12-01T20:54:00Z <p>We migrated from MVC 2 Preview 1 to MVC 2 Preview 2 to using multi-project areas. Everything works perfectly on local dev machine (Visual Studio 2008 SP1/IIS 7), however, it's does not work after I publish it to the server (Windows Server 2003/IIS 6).</p> <p>The deployment is done through the Build->Publish option in the VS2008 menu. I had also added the Wildcard mapping in IIS.</p> <p>IIS server was functioning properly in the past when it was MVC 2 Preview 1 project.</p> <p>It seems that the IIS should be configured differently to handle multi-areas MVC routing?</p> <p>One more observation, the views\areas\*.* directories in the main area are not copied to the IIS server during deployment.</p> <p>Has anybody deployed and configured multi-project areas solution to IIS 6 successfully?</p> <p><strong>UPDATE:</strong> We needed to <strong>add</strong> an additional line to the Web.config for the <strong>WebResource.axd</strong></p> <pre><code>&lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx" /&gt; &lt;add path="WebResource.axd" verb="GET" validate="True" /&gt; … &lt;/httpHandlers&gt; </code></pre> <p>You can read further here: <a href="http://forums.asp.net/t/1483430.aspx" rel="nofollow">http://forums.asp.net/t/1483430.aspx</a></p> http://stackoverflow.com/questions/1601020/ajax-change-in-net-4-sys-services-authenticationservice 0 AJAX change in .NET 4: Sys.Services.AuthenticationService Cylon Cat 2009-10-21T14:02:11Z 2009-12-01T18:26:45Z <p>I'm testing my existing apps in VS 2010, and ran into my first break. ASP.NET AJAX authentication support has changed.</p> <pre><code>Sys.Services.AuthenticationService.set_defaultLogoutCompletedCallback(OnLogoutCompleted); </code></pre> <p>This no longer works. "Sys" is defined, but "Sys.Services" is an undefined object. Does anyone have a quick pointer to the replacement functionality?</p> http://stackoverflow.com/questions/1506335/asp-net-mvc-ajax-actionlink-problem 0 asp.net mvc Ajax.ActionLink problem bogdanbrudiu 2009-10-01T20:39:45Z 2009-12-01T17:55:18Z <p>I am doing something wrong and I can not figure out where...</p> <p>I have this in my view - CreateForm.aspx </p> <pre><code>&lt;%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" %&gt; &lt;%= this.Ajax.ActionLink("Create New", "CreateForm", new { nr=ViewData["Nr"]??0 }, new AjaxOptions { UpdateTargetId = "panel" + (String.IsNullOrEmpty((string)ViewData["Nr"]) ? "0" : "1") }, new { id = "panel" + (String.IsNullOrEmpty((string)ViewData["Nr"]) ? "0" : "1") + "Form" })%&gt; &lt;div id="panel&lt;%=String.IsNullOrEmpty((string)ViewData["Nr"])?"0":"1"%&gt;"&gt;&lt;/div&gt; </code></pre> <p>I have this in my controller - </p> <pre><code> public ActionResult CreateForm(int nr) { ViewData["Nr"] = (nr++).ToString(); return PartialView(); } </code></pre> <p>when I click on the Link I expect that the response to be loaded in my panel# (panel0,panel1...) but I am redirected to an empty page with only the returned content</p> <p>this is the generated html</p> <pre><code>&lt;a href="/Member.aspx/CreateForm?nr=0" id="panel0Form" onclick="Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, updateTargetId: 'panel0' });"&gt;Create New&lt;/a&gt; &lt;div id="panel0"&gt;&lt;/div&gt; </code></pre> <p>and after click the page view source looks like this</p> <pre><code> &lt;a href="/Member.aspx/CreateForm?nr=0" id="panel1Form" onclick="Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, updateTargetId: 'panel1' });"&gt;Create New&lt;/a&gt; &lt;div id="panel1"&gt;&lt;/div&gt; </code></pre> <p>I have included Ajax js</p> <p></p> <pre><code> &lt;script src="/content/Microsoft/MicrosoftMvcAjax.debug.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>but I expected this to go into panel0... what am I doing wrong?</p> <p>P.S.</p> <p>Debuging with vs.net in MicrosoftMvcAjax.debug.js i get an error</p> <p>around line 3063...</p> <pre><code> var e = Function._validateParams(arguments, [ {name: "id", type: String}, {name: "element", mayBeNull: true, domElement: true, optional: true} ]); if (e) throw e; &lt;-here it trows an error </code></pre> http://stackoverflow.com/questions/1826654/invalidoperationexception-postback-trigger-cannot-find-a-control-within-the-item 0 InvalidOperationException: PostBack Trigger Cannot Find a Control within the ItemTemplate of a DataList Walter Lockhart 2009-12-01T14:47:59Z 2009-12-01T17:35:42Z <p>Hi Group,</p> <p>I would like to trigger a PostBack when the asp:LinkButton "addToCartButton" is clicked (see code below).</p> <p>I have declared a PostBack Trigger with the asp:UpdatePanel "updPnlProductsList" (see code below).</p> <pre><code>&lt;asp:Panel ID="pnlProductsList" runat="server" Visible="false"&gt; &lt;asp:UpdatePanel ID="updPnlProductsList" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;div class="featured"&gt; &lt;h3&gt;Product listing&lt;/h3&gt; &lt;div class="product clearfix"&gt; &lt;asp:DataList ID="productsList" runat="server" DataKeyField="prodid" OnItemCommand="productsList_ItemCommand" OnItemDataBound="productsList_ItemDataBound"&gt; &lt;HeaderTemplate&gt; &lt;table&gt; &lt;col width="85" /&gt; &lt;col width="315" /&gt; &lt;col width="85" /&gt; &lt;col width="315" /&gt; &lt;col width="85" /&gt; &lt;tr&gt; &lt;th align="left"&gt; &amp;nbsp; &lt;/th&gt; &lt;th align="left"&gt; Product Description &lt;/th&gt; &lt;th align="center"&gt; In Stock &lt;/th&gt; &lt;th align="center"&gt; Price &lt;/th&gt; &lt;th align="left"&gt; &amp;nbsp; &lt;/th&gt; &lt;/tr&gt; &lt;/HeaderTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;td height="85" valign="top"&gt; &lt;asp:HyperLink ID="standardImage" Style="float: left; margin-right: 5px; border: 2px; vertical-align: top;" Width="75" Height="75" runat="server"&gt;&lt;/asp:HyperLink&gt; &lt;/td&gt; &lt;td height="85" valign="top"&gt; &lt;asp:LinkButton ID="lbProductDescription" CommandName="show_product" runat="server" /&gt; &lt;p&gt; &lt;asp:Label ID="MfPartNo" runat="server" /&gt;&lt;/p&gt; &lt;/td&gt; &lt;td height="85" align="center" valign="top"&gt; &lt;p&gt; &lt;asp:Label ID="inventoryTextLabel" runat="server" /&gt;&lt;/p&gt; &lt;/td&gt; &lt;td style="padding-bottom: 10px;" height="85" align="center" valign="top"&gt; &lt;div class="product-actions clearfix"&gt; &lt;p class="price"&gt; &lt;strong&gt; &lt;asp:Label ID="sellPriceLabel" runat="server" Style="font-size: 0.9em;" /&gt;&lt;/strong&gt; &lt;/p&gt; &lt;/div&gt; &lt;/td&gt; &lt;td style="padding-bottom: 10px;" height="85" valign="top"&gt; &lt;div class="product-actions clearfix"&gt; &lt;p class="view"&gt; &lt;asp:LinkButton ID="addToCartButton" runat="server" Text="&lt;span&gt;&lt;strong&gt;Buy&lt;/strong&gt;&lt;/span&gt;" CommandName="add_to_cart" class="newactionbutton" /&gt; &lt;/p&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/div&gt; &lt;/ItemTemplate&gt; &lt;SeparatorTemplate&gt; &lt;tr&gt; &lt;td colspan="5" style="border-bottom: dotted 1px gray; line-height: 0.1em;"&gt; &amp;nbsp; &lt;/td&gt; &lt;/tr&gt; &lt;/SeparatorTemplate&gt; &lt;FooterTemplate&gt; &lt;/table&gt; &lt;/FooterTemplate&gt; &lt;/asp:DataList&gt; &lt;/div&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="addToCartButton" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/asp:Panel&gt; &lt;!-- /The all new Products List. --&gt; </code></pre> <p>Unfortunately, when I run this code I get the error:</p> <p>InvalidOperationException: A control with ID 'addToCartButton' could not be found for the trigger in UpdatePanel 'updPnlProductsList'.</p> <p>Would someone please help me reference the 'addToCartButton' within the ItemTemplate of the DataList.</p> <p>Or maybe I can cause a PostBack in the asp:LinkButton code behind? I'm coding in C#.</p> <p>Kind Regards</p> <p>Walter</p> http://stackoverflow.com/questions/1825747/ajaxcontroltoolkit-dll-refresh 0 AjaxControlToolkit.dll.refresh AmiT 2009-12-01T12:01:42Z 2009-12-01T12:06:21Z <p>What is the role of AjaxControlToolkit.dll.refresh file ?</p> http://stackoverflow.com/questions/1805266/the-server-method-methodname-failed 0 The server method 'methodname' failed. Sergey Osypchuk 2009-11-26T19:15:26Z 2009-12-01T10:05:19Z <p>I have strange error when calling WebService/C# from javascript.</p> <p>The server method 'GetGoogleToken' failed. No details, no stacktrace. On server, I set breakpoint - everything works smoothly and I am returing string (what could be simpler?)</p> <p>Also, method works fine when i call it using browser test environment.</p> <p>Here is method: </p> <pre><code>[WebMethod] public string GetGoogleToken(string login, string password) { try { string token = string.Empty; if (!String.IsNullOrEmpty(login) &amp;&amp; !String.IsNullOrEmpty(password)) { ContactsService service = new ContactsService("..."); service.setUserCredentials(login, password); token = service.QueryAuthenticationToken(); } return token; } catch (Exception ex) { // no errors happening on server side throw new ApplicationException("Error in GetGoogleToken", ex); } } </code></pre> <p>My Class attributes:</p> <pre><code> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] [System.Web.Script.Services.ScriptService] </code></pre> <p>my javascript:</p> <pre><code>Namespace.WebServices.ContactsImport.GetGoogleToken(login, password, ImportGoogle.authenticated, OnAjaxRequest_Error); </code></pre> <p>I also noticed, that error happens BEFORE server returned result. (e.g. i have breakpoint)</p> http://stackoverflow.com/questions/302244/why-is-my-calendarextender-getting-overlapped-when-rendered 0 Why is my CalendarExtender getting overlapped when rendered? Dillie-O 2008-11-19T15:25:33Z 2009-12-01T09:04:40Z <p>I'm working on a .NET web application and I'm using a CalendarExtender control within it to have the user specify a date. For some reason, when I click the icon to display the calendar, the background seems to be transparent, shown below:</p> <p><img src="http://www.dillieodigital.net/images/CexProblem.png" alt="alt text" /></p> <p>I'm using the extender on other pages and do not run into this issue.</p> <p>I'm not sure if it is worth mentioning, but the calendar is nested within a panel that has a rounded corner extender attached to it, as well as the panel below it (where the "From" is overlapping).</p> <p>Within that panel, I do have a div layout setup to create two columns.</p> <p>EDIT: The other thing to note here is that the section that has the name and "placeholders" for nickname are all ASP.NET label controls, if that matters.</p> http://stackoverflow.com/questions/1086924/umbraco-v4-vs-cute-ajax-uploader-control 2 Umbraco v4 vs Cute AJAX Uploader Control Gregorius 2009-07-06T13:21:54Z 2009-12-01T01:00:02Z <p>I have a custom user control that i use in a page in Umbraco CMS... since upgrading to version 4, it seems this user control wont work any longer. </p> <p>The user control contains an ajax uploader control (support request post here: <a href="http://cutesoft.net/forums/53732/ShowThread.aspx#53732" rel="nofollow">http://cutesoft.net/forums/53732/ShowThread.aspx#53732</a>), which allows users to upload images, then displays the uploaded images to the user. The control and image displays are contained within an UpdatePanel, which is where this problem is - seems the data getting sent back to the updatePanel is not valid, so the client is spitting the dummy and throwing this error:</p> <pre><code>Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ' &lt;!DOCTYPE html PUBL'. </code></pre> <p>I think its somethihng to do with how Master Pages is implemented in Umbraco v4 that is causing this. Any ideas as to why this may have happened, and what i can look at to try to solve it?</p> <p>FYI, here's a blog post that describes the error and its possible causes: <a href="http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx" rel="nofollow">http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx</a></p> <p>i'm doing any Response.write or Response.Redirect in the updatePanel I'm not using any response filters I've disabled server trace I'm not using response.transfer</p> <p>But, regardless of the above, this works fine using the same usercontrol on an Umbraco v3 site, which leads me to believe its somethign to do with v4 that's caused this.</p> <p>Any suggestions greatly appreciated</p> http://stackoverflow.com/questions/1363329/fire-async-postback-from-jquery 0 Fire async postback from jquery alexander-strandberg 2009-09-01T16:07:43Z 2009-11-30T20:00:09Z <p>Is there a way to fire a postback to the server through jQuery?</p> <p>I've tried just putting the postback signature in a .change method on a hiddenfield but it causes a full postback.</p> http://stackoverflow.com/questions/1821075/modalpopupextender-programmatic-changes-made-to-the-settings-of-the-related-pan 0 ModalPopupExtender - programmatic changes made to the settings of the related Panel have no effect J M 2009-11-30T17:03:55Z 2009-11-30T17:03:55Z <p>I have a popup extender linked to a panel as illustrated by the markup below:</p> <pre><code>&lt;asp:Button runat="server" ID="buttonViewQuestionPopupController" style="display:none" /&gt; &lt;ajaxToolkit:ModalPopupExtender runat="server" ID="popupViewQuestion" PopupControlID="panelViewQuestion" TargetControlID="buttonViewQuestionPopupController" DropShadow="True" BackgroundCssClass="modalBackground" &gt; &lt;/ajaxToolkit:ModalPopupExtender&gt; &lt;asp:Panel runat="server" ID="panelViewQuestion" Style="display: none" CssClass="modalPopupViewQuestion"&gt; &lt;asp:UpdatePanel runat="server" ID="updatePanelViewQuestion"&gt; &lt;ContentTemplate&gt; &lt;asp:Label runat="server" ID="labelTestInsidePanel" Text="Testing changes made in code......"/&gt; &lt;ContactorCompliance:QuestionDialog runat="server" id="dialogViewQuestion"&gt;&lt;/ContactorCompliance:QuestionDialog&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/asp:Panel&gt; </code></pre> <p>After a postback (in this case a question is selected in a grid), I want to be able to change the css class of panelViewQuestion.</p> <p>However, any programmatic changes I make to panelViewQuestion seem to be ignored.</p> <p>Changes to labelTestInsidePanel and dialogViewQuestion take effect.</p> <p>I looked at the rendered output and it contains two divs (an outer and an inner) with the original css class from the markup set on the inner div.</p> <p>Does anyone know a) why the programmatic change to panelViewQuestion don't take effect and b) how I might be able to make them?</p> <p>If I can't work this out, I will have to have multiple panel and extender sets in the page, each with a different css class set on the panel. I really don't want to have to do that......</p> http://stackoverflow.com/questions/1819203/asp-net-validation-error 0 asp.net - validation error Ranjana 2009-11-30T11:15:29Z 2009-11-30T16:27:46Z <p>im getting this error when i click my radio button, what is the solution for this------</p> <p>invalid postback or callback argument. Event validation is enabled using in configuration or &lt;%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.</p> http://stackoverflow.com/questions/617818/parse-error-while-using-scriptmanager 1 Parse Error while using ScriptManager Sachin Gaur 2009-03-06T06:22:42Z 2009-11-30T16:00:14Z <p>I have a web application that was working fine two days before. When I moved this web site to another machine, then facing following problem. <br/><br/> In my web page, I have declared ScriptManager as:</p> <pre><code>&lt;asp:ScriptManager ID="scriptMgr" runat="server"&gt; &lt;/asp:ScriptManager&gt; </code></pre> <p>And when I visit the web page, I am getting this error:</p> <pre><code>The base class includes the field 'scriptMgr', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager). </code></pre> <p>And on another web page, I am getting following error:</p> <pre><code>The base class includes the field 'upProgress', but its type (System.Web.UI.UpdateProgress) is not compatible with the type of control (System.Web.UI.UpdateProgress). </code></pre> <p>My web application is built on ASP.NET 2.0 and I have also verified that the correct(1.0.61025.0) version of System.Web.Extensions.Dll is present in my application's bin folder. <br/><br/> Entry for the System.Web.Extensions.Dll in the web.config are:</p> <pre><code>&lt;configSections&gt; &lt;sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" &gt; &lt;section name="CSI.OLS.Library.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /&gt; &lt;/sectionGroup&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" /&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; </code></pre> <p> <br/> It seems that both the error are related to using AJAX feature. Can anyone tell me, what may be causing the aforementioned error?</p> http://stackoverflow.com/questions/1819784/method-error-12029 0 Method error 12029 shmur 2009-11-30T13:21:24Z 2009-11-30T13:21:24Z <p>I am getting method error 12029 in my web application which is fetching the data from the database, this error occurs when the connection to our database server cannot be established or when the page is not able to retrieve the data from the DB</p> <p>Actual scenario in which this error usually occurs is:</p> <p>I have got a cascading dropdown list on my page where the data into the second dropdown list is populated based on the selection done in the first dropdown. Whenever the page is left idle for some half an hour and if I try to access the data after that, this error occurs in the cascading dropdownlist. The issue gets solved if I close the page and open it again or if I try to access the page after sometime.</p> <p>What should I do in order to resolve this issue?</p> http://stackoverflow.com/questions/1819490/calling-asp-net-mvc-controller-explicitly-via-ajax 0 Calling ASP .NET MVC Controller explicitly via AJAX effkay 2009-11-30T12:20:32Z 2009-11-30T12:24:09Z <p>I know that I can use following piece of code to refresh a div:</p> <pre><code>&lt;%=Ajax.ActionLink( "Update", "Administration", new AjaxOptions { UpdateTargetId = "grid", LoadingElementId = "grid-wait" } ) %&gt; </code></pre> <p>But this creates a link; user will have to click on it to get the view refreshed.</p> <p>How can I make it automatic, i.e., like say if I want the grid to be refreshed after every five seconds?</p> <p>Regards,</p> http://stackoverflow.com/questions/1819213/not-ajax-related-controls-in-ajaxcontroltoolkit 0 Not Ajax-related controls in AjaxControlToolkit? afsharm 2009-11-30T11:16:23Z 2009-11-30T11:16:23Z <p>Why AjaxControlToolkit contains controls like <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/DropShadow/DropShadow.aspx" rel="nofollow">DropShadow</a> that are not related to Ajax really? Such controls just make use of JavaScript and does not send or receive any data to/from server?</p> http://stackoverflow.com/questions/771557/jquery-and-asp-net-ajax-differences-in-mvc 0 JQuery and ASP.NET AJAX differences in MVC Sniffer 2009-04-21T08:12:11Z 2009-11-30T09:26:21Z <p>Hi</p> <p>Looking at the new ASP.NET MVC framework it comes with javascript files for both ASP.NET AJAX and JQuery.</p> <p>Can someone explain what ASP.NET AJAX gives me that JQuery doesn't?</p> <p>Do I need to use both and can you give me examples where I would/would not need to use both?</p> <p>I've used JQuery on plenty of non ASP.NET projects (PHP and prototype sites) and have used JQuery Ajax quite happily, but I'm unsure what's best to use for ASP.NET. </p> <p>Thanks for your time Sniffer</p> http://stackoverflow.com/questions/1791617/double-postback-causes-selectedindexchanged-to-fire-which-fires-autopostback 0 Double postback causes SelectedIndexChanged to fire which fires AutoPostback Eugene Niemand 2009-11-24T17:25:08Z 2009-11-30T05:16:47Z <p>I have a Gridview in a UpdateTemplate. I have four template fields in the four different columns. Each TemplateField has an UpdatePanel with a control in it. All the columns are sortable and the Gridview is page-able. Three of the template fields has DropDowns in the UpdatePanel and one has a Textbox, all these controls have AutoPostBack = True. All the UpdatePanels have UpdateMode = Conditional and ChildrenAsTriggers = false.</p> <p>When I click sort or change page index and the results have not returned and do it again(click sort or page index) while it is busy the SelectedIndexChanged and TextChanged events fires on some of the controls.</p> <p>It seems that depending on when I do this some of the results has been refreshed and there events don't fire but some are still busy, and the second Postback halts the first one and thinks that the values have changed and fires there respective AutoPostBackt events. When all the events fired the grid then displays the intended result set that was expected from the first sort or page index change.</p> http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox 0 ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox? Tom S. 2009-11-29T21:25:20Z 2009-11-29T21:50:16Z <p>Hi everyone. Im building a small form using ComboBoxes with lots of items, and it seems after exactly 510 items added, the ComboBox stops working, and the combo button is hidden.</p> <p>Is there any maximum number of items that can be added? Or this might be other problem?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1581546/how-to-display-message-boxes-from-server-side-code 0 how to display message boxes from server-side code? HelloBD 2009-10-17T06:06:17Z 2009-11-29T13:00:01Z <p>work on Asp.net C# vs05.My form has a button .Under this button event i save value on database.I want after the value save use get an alert message.<strong>How to show alert message</strong></p> http://stackoverflow.com/questions/1810456/strange-js-array-assign-bug-in-ie8 0 Strange js array assign bug in IE8 Kuroro 2009-11-27T20:02:42Z 2009-11-28T12:25:07Z <p>This code causes a strange bug in ie8. It comes from MicrosoftAjaxAdoNet.js in <a href="http://www.asp.net/ajaxlibrary/" rel="nofollow">link text</a></p> <pre><code> function Sys$Data$_AdoNetBatchWriter$startChangeSet() { this._changesetBoundary = "changeset_" + this._createBoundary(); this._changesetEntries = []; } </code></pre> <p>Before calling this function, this._changesetEntries is always null. I expected his._changesetEntries will become a empty array after this function is called. It happened as expected in chrome, firefox, ie8. It is not always true in ie8, I found that sometimes this function create a method "<strong>indexOf(v, n)</strong>" instead of empty array.</p> <p>This strange behavior cause other bug noted in here <a href="http://stackoverflow.com/questions/1795682/ado-net-data-service-error-undefined-is-not-a-supported-http-method-in-ie8">link text</a> </p> <p>EDIT:I can isolate this issue from my code now, this issue occur when I use a fish-eye jquery plug-in. In this plug-in, there are something like</p> <pre><code>[].indexOf || (Array.prototype.indexOf = function (v, n) { n = (n == null) ? 0 : n; var m = this.length; for (var i = n; i &lt; m; i++) if (this[i] == v) return i; return -1; </code></pre> <p>})</p> <p>This is a cause of this issue. </p>