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//