Re: What version of cute editor for ASP ?

  •  09-04-2005, 4:39 PM

    Re: What version of cute editor for ASP ?

    That's really odd!


    I've spent some time analyzing what CE does and what happens.
    So "Wahr" is the value passed as an argument to the image upload module.

    Appearently ASP interpreter on IIS installed in German even translates boolean values...

    To make it worse, there seems an error in the way the ASP interpreter handles it.

    See the following code:

    <html><body>
    <%
    t = true
    response.write "<a href=""anything.asp?booleanArg=" & t & """>anything</a>"
    %>
    <br>
    <a href="anything.asp?booleanArg=<% =t %>">anything</a>
    </body></html>

    produces the following inconsistent code:

    <html><body>
    <a href="anything.asp?booleanArg=Wahr">anything</a>
    <br>
    <a href="anything.asp?booleanArg=True">anything</a>
    </body></html>

    (see it live at http://kristalle.ch/tests/anything.asp)

    Looking inside the code of Cute Editor I find it amazing that still so much works properly - the boolean argument passing seems to be used at numerous places.

    I have no clue what language parameters can be set at what place. Furthermore I'm only a customer of an ISP and have no contol over that server.

    Your help and tips are still very much appreciated!

    Regards
    Olivier

View Complete Thread