Upgrade CE ASP to .NET -> possible?

Last post 12-19-2006, 12:12 AM by JFRanger. 2 replies.
Sort Posts: Previous Next
  •  11-30-2006, 11:32 PM 24765

    Upgrade CE ASP to .NET -> possible?

    Hello, I have installed on my powerfull CMS CuteEditor ASP 5.2.

    I really need the .NET version for the CSS advance features and but my .NET skills are very bad. This is funny because I'm a pro and speak better ASP than english and french, but I've realize that .NET is 99.99% diffent that ASP 3.

    My ASP script is something like this...

    <%
                Dim editor
                Set editor = New CuteEditor
                editor.ID = "HTML_CONTENT"
                editor.Text = HTML_CONTENT
                editor.FilesPath = "editeur5_2"
                editor.ImageGalleryPath = "/" & foldername & "/documents/images"
                if IsGoldUser then editor.MaxImageSize =  500
           
        ' get user pages
         While not rs.eof
           listPage = listPage & left(rs("nom"),24) & ","
           urlPage = urlPage & defaultPage & rs("idpage")& ","
         rs.MoveNext : wend           

                editor.LinksDropDownMenuNames =  left(listPage,len(listPage)-1)
                editor.LinksDropDownMenuList = left(urlPage,len(urlPage)-1)
             
                editor.Draw()
    %>

    I was thinking that .NET will be easy like this...


    <%
    Editor1.Setting("security:FilesGalleryPath")= "/" & foldername & "/documents/images"
    Editor1.Setting("security:MaxImageSize")= "200"
    %>
    <CE:Editor runat="server" id="Editor1"   />

    But it is not that easy... not working!!

     - Will it be complicated to mix ASP and .NET code in the same page my application is 100% ASP3 but I need .NET CE!
     - Is there a FAQ or TUTORIAL  how to this in this forum?
     - Is there a pro of those 2 language out there?
     - Is there a good COOK BOOK for old fashion guys like me that dream ASP but is ready to be converted!!

    Thank for you thoughts and tips!
    //JF//

  •  12-01-2006, 12:28 AM 24766 in reply to 24765

    Re: Upgrade CE ASP to .NET -> possible?

    >>- Will it be complicated to mix ASP and .NET code in the same page my application is 100% ASP3 but I need .NET CE!
     
    It's impossible to mix ASP and .NET code in the same page.
     
    If you do want to use .NET CE in classic ASP application, here is the solution:
     
     
    In this example, we open .NET CE in a separate ASPX page.
     
    - Is there a FAQ or TUTORIAL  how to this in this forum?
     
    Please check the developer's guide.
     
    >>- Is there a pro of those 2 language out there?
     
    We are the pro of those 2 language.
     
    >>- Is there a good COOK BOOK for old fashion guys like me that dream ASP but is ready to be converted!!
     
    Please check this great site:
     
     

    How to Start Learning ASP.NET

    Here are some tutorials to follow and a few videos to watch that will help you get started with ASP.NET.

    Tutorials

    To help you get started with ASP.NET and Visual Web Developer, we provide a Guided Tour and QuickStart tutorials.

    »  Follow the Visual Web Developer Guided Tour
    »  Follow the ASP.NET QuickStart Tutorials


     
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  12-19-2006, 12:12 AM 25217 in reply to 24766

    Re: Upgrade CE ASP to .NET -> possible?

    Thank you for this SUPER FAST conclusion Adam!
View as RSS news feed in XML