Ajaxcontroltoolkit -V 7.1213.0 on Umbraco v6.1.6 Backoffice Content Pages Render No AJAX Functionality
I added the Ajaxcontroltoolkit.dll and min.dll to the Umbraco bin. Built my web control with a ajaxfileupload because it needs to connect to the Amazon S3 storage service with Elastic Transcoder operations. I quickly found that adding my toolkit script manager within the user control would not work. I need this control in the back office to be used on a content page by permissioned users/members. So When I copy the .dll to the bin and the usercontrol to the usercontrol folder. I create the datatype, add it to a new root level document type (testing homepage). I cannot get any ajax functionality to render on any back offive pages. I've put my ajaxtoolkitscript manager as a separate datatype, added it to document type on the page above the user control, I've created it as a macro and placed in the content page, and I've added the macro into the template which was copied from the starter kit web forms template.
I'll just work on picking the media nodes out from the Umbraco media class to build a URL for my later uploaded items. Please help! Code below:
Web Control:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="myComp.SCO.Management.ascx.cs" Inherits="myComp.SCO.Management.myComp_SCO_Management" %>
Ajaxcontroltoolkit -V 7.1213.0 on Umbraco v6.1.6 Backoffice Content Pages Render No AJAX Functionality
I added the Ajaxcontroltoolkit.dll and min.dll to the Umbraco bin. Built my web control with a ajaxfileupload because it needs to connect to the Amazon S3 storage service with Elastic Transcoder operations. I quickly found that adding my toolkit script manager within the user control would not work. I need this control in the back office to be used on a content page by permissioned users/members. So When I copy the .dll to the bin and the usercontrol to the usercontrol folder. I create the datatype, add it to a new root level document type (testing homepage). I cannot get any ajax functionality to render on any back offive pages. I've put my ajaxtoolkitscript manager as a separate datatype, added it to document type on the page above the user control, I've created it as a macro and placed in the content page, and I've added the macro into the template which was copied from the starter kit web forms template.
I'll just work on picking the media nodes out from the Umbraco media class to build a URL for my later uploaded items. Please help! Code below:
Web Control:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="myComp.SCO.Management.ascx.cs" Inherits="myComp.SCO.Management.myComp_SCO_Management" %>
<%--<ajaxToolkit:ToolkitScriptManager runat="server"></ajaxToolkit:ToolkitScriptManager>--%>
<asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink>
<br />
<br />
<ajaxToolkit:AjaxFileUpload
ID="AjaxFileUpload1"
AllowedFileTypes="zip"
MaximumNumberOfFiles="5"
OnUploadComplete="AjaxFileUpload1_OnUploadComplete"
runat="server" />
<br />
<br />
<div style="width: 300px;">
<asp:Label ID="Label0" runat="server" Text="Label0"></asp:Label>
<br />
<asp:TextBox ID="TextBox0" Width="300px" runat="server" Text="TextBox0" TextMode="MultiLine" Rows="2"></asp:TextBox>
</div>
<br />
<br />
<div style="width: 300px;">
<asp:Label ID="Label1" runat="server" Text="Label1"></asp:Label>
<asp:TextBox ID="TextBox1" Width="600px" runat="server" Text="TextBox1" TextMode="MultiLine" Rows="2"></asp:TextBox>
</div>
<br />
<br />
<div style="width: 300px;">
<asp:Label ID="Label2" runat="server" Text="Label2"></asp:Label>
</div>
<br />
<br />
<div style="width: 300px;">
<asp:Label ID="Label3" runat="server" Text="Label3"></asp:Label>
</div>
<br />
<br />
<div style="width: 300px;">
<asp:TextBox ID="TextBox3" Width="300px" runat="server" Text="TextBox3" TextMode="MultiLine" Rows="2"></asp:TextBox>
</div>
is working on a reply...