ajaxcontroltoolkit

Problems with Ajax Tabs control

こ雲淡風輕ζ 提交于 2019-12-12 01:49:16
问题 There is a issue when we use ajax tab control on a web page and when that page is accessed in fire fox 7.0 version then ajax tabs does not show. can anyone solve this?. Thanks in advance. I got error in fire fox error console. The error is Error: uncaught exception: [Exception... "Index or size is negative or greater than the allowed amount" code: "1" nsresult: "0x80530001 (NS_ERROR_DOM_INDEX_SIZE_ERR)" location: "http://localhost:1573/myPage.aspx?_TSM_HiddenField_=ctl00_ContentPlaceHolder1

CollapsiblePanelExtender: Can not get object in onLoad of page (AJAX Toolkit)

别等时光非礼了梦想. 提交于 2019-12-12 01:46:17
问题 I need to add a javascript event for CollapsiblePanelExtender on javascript pageload of the page. Following is the definition of CollapsiblePanelExtender: <cc1:CollapsiblePanelExtender ID="cpe" runat="Server" TargetControlID="pnlInstances" BehaviorID="cpe" ImageControlID="lnkWebroleAction" ExpandedImage="~/App_Themes/Default/images/MonitorDownArrow16.png"CollapsedImage="~/App_Themes/Default/images/MonitorLeftArrow16.png" CollapsedSize="0" Collapsed="false" ExpandControlID="lnkWebroleAction"

Remembering active tab on refresh of ASPX page

雨燕双飞 提交于 2019-12-12 01:30:24
问题 I've got an ASPX page set up that loads and displays dynamic data from a local SQLite database. Since the data is being written to the database from a separate C# application, I've set up my ASPX page to refresh every 30 seconds when the database has flagged itself as actively receiving new data. On my ASPX page, I've got a TabContainer with several different TabPanels that each represent a different view of the data. Now, when my page is being refreshed, the active tab panel is being reset

Get the Value of an ASP TextBox Element with an HTMLEditorExtendor Attached, Using JavaScript

狂风中的少年 提交于 2019-12-12 01:26:20
问题 I am having an odd issue. I have a textbox with an ajaxToolkit HtmlEditorExtender attached to it. I need to get the text that is put in this textbox using javascript. I have a simple test set up: var element = document.getElementById('<%=txtUserInput.ClientID%>'); alert(element); This seems to report that the object is an HTML textarea element so I use .value to try and get what is inside then I tried .text because .value did not work. alert(element.Value); alert(element.Text); These both

how to set dd-MM-yyyy formate in ajaxToolkit CalendarExtender

梦想的初衷 提交于 2019-12-11 19:17:05
问题 I am using ajax Toolkit Calendar Extender.And i need dd-MM-yyyy date formate. For that i write this code Code <asp:TextBox CssClass="tb10" ID="txtDtFrom" runat="server" Width="130px"></asp:TextBox> <asp:ImageButton ID="ImgFrom" runat="server" ImageUrl="~/GridViewCSSThemes/Images/Calendar_scheduleHS.png" CausesValidation="False" /> <ajaxToolkit:MaskedEditExtender ID="MaskedEdit_dtFrom" runat="server" TargetControlID="txtDtFrom" Mask="99-99-9999" MaskType="Date" AcceptAMPM="True" DisplayMoney=

How do you use ajax Toolkit prefix in web.config with AJAX Toolkit v4? (without assembly)

早过忘川 提交于 2019-12-11 18:32:42
问题 Alright, so I deleted AJAX toolkit v1.0 from the GAC even though I had only installed .net framework 4 (you would think .net framework 4 would come with ajax toolkit v4). I deleted it because I thought then I would be able to use gacutil to insert to assembly the v4 AjaxControlToolkit.dll I have. However, in Windows 7, it's not allowing me to do that. Now I lost my ajax toolkit install. Though I can reinstall the old version v1, from msi. And I have a reference in my web.config that is

Ajax Control Toolkit: FSharp.Core Error

时光怂恿深爱的人放手 提交于 2019-12-11 18:26:39
问题 I've experiencing some troubles when running applications in Visual Web Developer 2010 with the Ajax Control Toolkit (ToolkitScriptManager). Many times an error occours when I run the solution: Could not load file or assembly 'FSharp.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. O sistema não pode encontrar o arquivo especificado. (System couldn't find the specified file). If I choose "Continue", I must to reload the webpage and then the

UpdatePanel and modifying controls outside of the Panel

烈酒焚心 提交于 2019-12-11 17:35:34
问题 I have a control inside of an UpdatePanel . The UpdatePanel has an AsyncPostBack trigger associated with the inner control. This works just fine. I have another control containing a SSRS ReportViewControl that I would like to conditionaly hide based on the results from the postback event of the UpdatePanel mentioned above. The ReportViewerControl is not inside of an UpdatePanel and I would like to keep it this way . How can I hide the ReportViewerControl based on the postback event of an

Storing TabContainer's ActiveTabIndex postback

狂风中的少年 提交于 2019-12-11 17:33:16
问题 I use the AJAX Control Toolkit's 'TabContainer' control a lot in my application, and a requirement of the application is to store the active tab in a Session. To do this currently, I have the tabs in an UpdatePanel, and perform a postback to store the active tab index in a session when the tabs are changed. This is a slow operation as the page is fairly intensive so this is not ideal. Are there any alternatives to this? Perhaps using a web service to store the session without a post back? 回答1

Retrieve Ajax star rating value to Asp.net backend

随声附和 提交于 2019-12-11 15:37:08
问题 This is my rating control in aspx page. When user click the star, i want to update the label3. <style type="text/css"> .Star { background-image: url(img/Star.gif); height: 17px; width: 17px; } .WaitingStar { background-image: url(img/WaitingStar.gif); height: 17px; width: 17px; } .FilledStar { background-image: url(img/FilledStar.gif); height: 17px; width: 17px; } </style> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat