ajaxcontroltoolkit

Mismatch in Assembly and Product Version

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-02 07:02:47
I am trying to use Ajax control toolkit in asp.net website. I copied the dll from one of my previous sample project. It has the following details Assembly Version – 3.5.40412.0 File Version - 3.5.40412.2 Internal Name: Ajax Control Toolkit Language : Neutral Product Version - 3.5.40412.2 When I add reference to this assembly, it appears as “AjaxControlToolkit-3.5.40412.2” in the reference list. When I run the solution, I get a FileLoadException: Could not load file or assembly 'AjaxControlToolkit-3.5.40412.2' or one of its dependencies. The located assembly's manifest definition does not match

Hidden/Shown AsyncFileUpload Control Doesn't Fire Server-Side UploadedComplete Event

我的未来我决定 提交于 2019-12-02 04:46:10
问题 I recently came across the AsyncFileUpload control in the latest (3.0.40412) release of the ASP.Net Ajax Control Toolkit. There appears to be an issue when using it in a hidden control that is later revealed, such as a <div> tag with visible=false . Example: Page code - <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="act" %> . . . <act:ToolkitScriptManager runat="server" ID="ScriptManager1" /> <asp:UpdatePanel runat="server" ID="upnlFileUpload">

AJAX ModalPopup Pops Behind (Under) Page Content (Negative z-index)

末鹿安然 提交于 2019-12-02 04:32:33
I am having an issue with the AJAX ModalPopupExtender in version 40412 of the AJAX Control Toolkit ( http://ajaxcontroltoolkit.codeplex.com/releases/view/43475 ). The first time the ModalPopup is made visible it works correctly. The z-index is set to 6001 (and the background Div's z-index is set to 6000) and the Popup appears above everything else. If the cancel button within the ModalPopup is clicked, it also has the correct functionality, the display is set to "none" and the ModalPopup is no longer visible. However, when the Popup is triggered again, the z-index is only set to 2000 which is

AJAX Accordion Expand all Panels on page load

故事扮演 提交于 2019-12-02 04:05:13
I am using ASP.NET AJAX accordion . http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/Accordion/Accordion.aspx . Is there any way to expand all panels on page load ? Thanks Accordion control supports only one active pane at a time. You can have all panes collapsed stage but only once can be active at a time. For what you need, you can use multiple collapsible panels . Alternative can be to use jquery sliding which I would prefer. Here's the quick fiddle that I put up to start you through. 来源: https://stackoverflow.com/questions/7707635/ajax-accordion-expand-all-panels-on-page-load

Hidden/Shown AsyncFileUpload Control Doesn't Fire Server-Side UploadedComplete Event

断了今生、忘了曾经 提交于 2019-12-02 01:51:49
I recently came across the AsyncFileUpload control in the latest (3.0.40412) release of the ASP.Net Ajax Control Toolkit. There appears to be an issue when using it in a hidden control that is later revealed, such as a <div> tag with visible=false . Example: Page code - <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="act" %> . . . <act:ToolkitScriptManager runat="server" ID="ScriptManager1" /> <asp:UpdatePanel runat="server" ID="upnlFileUpload"> <ContentTemplate> <asp:Button runat="server" ID="btnShowUpload" Text="Show Upload" /> <div runat="server" id=

Button inside Update Panel is not triggered, in asp.net

大兔子大兔子 提交于 2019-12-02 00:32:51
问题 <asp:ModalPopupExtender ID="MPE_EditGroup" runat="server" TargetControlID="btnShowPopup" PopupControlID="pnlpopup" CancelControlID="btnCancel" /> <asp:ToolkitScriptManager ID="ScriptManager1" runat="server" /> <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false"> <ContentTemplate> <asp:Panel ID="pnlpopup" runat="server"> <asp:ListBox ID="lst_allmembers" DataValueField="FirstName" runat="server" /> <asp:Button ID="btn_Add" runat="server" Text=

ajaxfileupload multiple inputs on page

你说的曾经没有我的故事 提交于 2019-12-01 23:32:47
问题 I'm using ajaxFileUpload as described here: http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/AjaxFileUpload/AjaxFileUpload.aspx It is working fine except when I have multiple file upload controls on the same page. Specifically, I am trying to upload different files for different questions. When I upload the first on the page, it works fine, but the one lower down on the page will only upload it's file into the answer for the first question. I'm not sure that makes sense... so it

How do I stop HtmlEditorExtender encoding html in postback?

喜你入骨 提交于 2019-12-01 22:49:00
问题 I have a user control that contains a text box, an HtmlEditorExtender , and a button. The user control is loaded into a parent page using LoadControl() . Whenever I click on the button to post the form, any formatted text in the text box gets encoded, which is not what should happen. For example, if I load the text control with <p>test</p> after I click on the button to post the page, the text returned by the .Text property is &lt;p&gt;test&lt;/p&gt; If I post a second time, it is further

ajaxfileupload multiple inputs on page

拜拜、爱过 提交于 2019-12-01 22:33:08
I'm using ajaxFileUpload as described here: http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/AjaxFileUpload/AjaxFileUpload.aspx It is working fine except when I have multiple file upload controls on the same page. Specifically, I am trying to upload different files for different questions. When I upload the first on the page, it works fine, but the one lower down on the page will only upload it's file into the answer for the first question. I'm not sure that makes sense... so it may help you to know that my page is populated with questions dynamically using ascx files. The document

how to keep javascripts after UpdatePanel partial postback

强颜欢笑 提交于 2019-12-01 21:51:26
问题 There is a lot of code so I want to explain the issue shortly in words. I have a Master page, that includes all references to javascript files and have the pages that use the master page. I use update panel in my pages and inside the update panel there are some forms including that one-has postback capability(ie dropdownlist). The problem is when the state changes and a partial postback occurs, the forms which has some capabilities and effects because of those javascripts, then lose all the