cutewebui "Unrecognised tag" in Visual Studio 2008

Last post 01-19-2012, 4:37 PM by Anonymous. 2 replies.
Sort Posts: Previous Next
  •  01-17-2012, 1:31 AM 72712

    cutewebui "Unrecognised tag" in Visual Studio 2008

    Hi.
     
    I have put the CuteWebUI.AjaxUploader.dll into the bin folder, and added the correct settings in the Web.Config for both the Classic mode and Integrated mode, and Visual Studio doesn't recognise this:
     
    <cutewebui:uploader runat="server" ID="Uploader1" InsertText="Upload Multiple files Now"
                            MultipleFilesUpload="true" OnFileUploaded="Uploader_FileUploaded">
                        </cutewebui:uploader>
     
     
     
    I then proceeded to add the CuteWebUI.AjaxUploader.dll as a reference, and then went into my .cs file and added
     
    using CuteWebUI;
    using CuteWebUI.Design;
     
    I've tried building and re-building it, but to no avail. 
     
    Any help would be greatly appreciated.
  •  01-17-2012, 6:53 AM 72719 in reply to 72712

    Re: cutewebui "Unrecognised tag" in Visual Studio 2008

    Hi dacoda,
     
    Can you post your web.config code here? So we can check it for you.
     
    And please try the example page below, does it work for you?
     
    <%@ Page Language="C#" %>

    <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>example</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <CuteWebUI:UploadAttachments ID="uploader1" runat="server">
            </CuteWebUI:UploadAttachments>
        </form>
    </body>
    </html>
     
    Regards,
     
    Ken
  •  01-19-2012, 4:37 PM 72748 in reply to 72719

    Re: cutewebui "Unrecognised tag" in Visual Studio 2008

    Adding in
     
    1.   <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
     
    worked! Thanks!
View as RSS news feed in XML