Community
    • Login

    The Nightmare %> Issue

    Scheduled Pinned Locked Moved General Discussion
    19 Posts 7 Posters 339 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • rdipardoR
      rdipardo @Bjorgen Eatinger
      last edited by

      @Bjorgen-Eatinger

      Already done https://github.com/ScintillaOrg/lexilla/issues/335

      1 Reply Last reply Reply Quote 2
      • Alan KilbornA
        Alan Kilborn @Bjorgen Eatinger
        last edited by Alan Kilborn

        @Bjorgen-Eatinger said:

        I wouldn’t mind paying money for NotePad++, but that’s not possible, is it?

        You can donate if you’d like; see HERE.

        1 Reply Last reply Reply Quote 0
        • Bjorgen EatingerB
          Bjorgen Eatinger @Coises
          last edited by

          @Coises I greatly appreciate your post and kindness. I am not a pro-user by any means. I will take your advice and do my best to report this issue regarding Lexilla on GitHub. I’ll more than likely delete this post here, as the responses were unusual. I’m an older fellow and haven’t been super active other than the work that I do on my own website. I tried to edit the post, but wasn’t allowed to do so. Thank you again!

          Terry RT 1 Reply Last reply Reply Quote 0
          • Terry RT
            Terry R @Bjorgen Eatinger
            last edited by

            @Bjorgen-Eatinger said in The Nightmare %> Issue:

            I’ll more than likely delete this post here, as the responses were unusual.

            We prefer users to NOT delete posts, especially if there have been responses. Imagine some months down the track an initial post is deleted leaving all these responses to some “unknown” question.

            In fact, us moderators will reinstate a deleted message if there are responses so as to keep that “continuity” of information.

            Terry

            Bjorgen EatingerB 1 Reply Last reply Reply Quote 0
            • Bjorgen EatingerB
              Bjorgen Eatinger @Terry R
              last edited by

              @Terry-R Okay, yes you are right. Information is key–the more the better! So I did as @Coises suggested, and download and tested SciTE, and found that it works perfectly. It handles the opening and closing brackets gracefully and correctly when they are a part of a comment. In fact, if I don’t use them correctly (e.g., '<% Hello % >), then it lets me know about it–very nice. Therefore, as @Coises suggests this problem must be in NotePad++ itself. I will update my GitHub post accordingly. Thank you all for all of your posts and guidance. Very much appreciated!

              PeterJonesP rdipardoR 2 Replies Last reply Reply Quote 0
              • PeterJonesP
                PeterJones @Bjorgen Eatinger
                last edited by

                @Bjorgen-Eatinger said in The Nightmare %> Issue:

                So I did as @Coises suggested, and download and tested SciTE, and found that it works perfectly. It handles the opening and closing brackets gracefully and correctly when they are a part of a comment.

                Which is odd, because @rdipardo’s experiment, which was included in the Lexilla issue, proves that SciTE does not handle it correctly.

                Can you use the </> button on a post toolbar, and paste in the exact example text that shows Notepad++ not handling it correctly and SciTE is handling it correctly, with screenshots of both?

                1 Reply Last reply Reply Quote 0
                • rdipardoR
                  rdipardo @Bjorgen Eatinger
                  last edited by rdipardo

                  @Bjorgen-Eatinger said in The Nightmare %> Issue:

                  Information is key–the more the better!

                  In that case, please reply to @PeterJones’s most recent post, and also show what options are enabled in the Settings > Preferences > Highlighting submenu.

                  My initial response to N++ issue #17072 was to assume it was a duplicate of another issue caused by the tag highlighting feature, which will naïvely find “tags” in contexts where there is no HTML markup; e.g.,

                  257007691-f758a461-aa90-42ed-8275-7360245a6bfb.png

                  This only occurs when the active language is HTML and the Enable option is checked under Settings > Preferences > Highlighting > Highlight matching tags .

                  1 Reply Last reply Reply Quote 1
                  • PeterJonesP
                    PeterJones
                    last edited by PeterJones

                    For example, I spun up the IIS features on my Win11 machine.

                    If I use:

                    <!DOCTYPE html>
                    <html>
                    <body>
                    <%
                    Response.Write("Hello World!<hr>")
                    %>
                    
                    <%
                    Response.Write("Run me!")
                    ' Response.Write("Commented out!")
                    Response.Write("<p>Run me 2!</p>")
                    %>
                    
                    <%
                    LocationPhraseServiceArea = "{This is the value}"
                    %>
                    <%
                    ' <p>
                    ' We provide professional event production and rental services <%= LocationPhraseServiceArea %>.
                    ' what goeth here</p>
                    %>
                    
                    <p>
                    We provide professional event production and rental services <%= LocationPhraseServiceArea %>.
                    what goeth here</p>
                    
                    </body>
                    </html>
                    

                    … which is the best interpretation I can come up with for your “later in the page content:” code snippet, plus some extra to prove that IIS ASP code is working around it, I get:

                    936879a3-6453-4907-af76-ca042474ab0d-image.png

                    The Notepad++ highlighting seems to match what’s displayed when I look at what the server shows – that is, the %> at the end does close the ASP wrapper, and it goes back to being raw HTML, which the browser renders.

                    So you really need to show

                    1. exactly what code you have.
                      If my “use the </> button” explanation doesn’t make sense to you, then use
                      ```
                      paste your ASP code here
                      ```
                      
                      for example,
                      ```
                      <%    
                      Response.Write("Hello World!<hr>")
                      %>
                      ```
                      
                    2. a screenshot of the highlighting in Notepad++ being “wrong”
                    3. a screenshot of the highlighting in SciTE (and which version of SciTE you are using) being “right”

                    It needs to be identical code in both Notepad++ and SciTE, so that we’re comparing apples to apples.

                    Bjorgen EatingerB 1 Reply Last reply Reply Quote 0
                    • Bjorgen EatingerB
                      Bjorgen Eatinger @PeterJones
                      last edited by

                      @PeterJones Sorry for the late reply. This issue only occurs in a case like this:

                      ’ <% Sub ApplyPasswordReset(oConnGlobal, postData, ByRef result). %>

                      There is a comment (apostrophe) in front of that line of code.

                      The editor is not honoring the fact that this line of code is a COMMENT ONLY.

                      Every line of actual code after this line is now treated as text only (not ASP code).

                      Until you put a SPACE between the “%” and the “>”, as in the following:

                      ’ <% Sub ApplyPasswordReset(oConnGlobal, postData, ByRef Result). % >

                      That’s it. Again, sorry for the late reply.

                      PeterJonesP 1 Reply Last reply Reply Quote 0
                      • PeterJonesP
                        PeterJones @Bjorgen Eatinger
                        last edited by

                        @Bjorgen-Eatinger said in The Nightmare %> Issue:

                        This issue only occurs in a case like this:

                        Sadly, you did not give nearly enough for us to be able to investigate your problem any further. I put in exactly that line (and only that line) into bjorgen.asp on my local IIS, and when I go to that page, it gives me a server error:
                        5728353b-eb82-47ee-baa1-0082457cc706-image.png

                        … And I confirmed that other pages, like the one I showed above, are still working on my local server.

                        From what I understand, the ' as a comment is VBSCRIPT syntax, not ASP-specific syntax. Because I thought everything outside of <% ... %> was just interpreted as ASP (and my quick web searches seem to confirm that conclusion on my part). In which case, putting the ' before a <% ... %> line is not “commenting out” anything, it’s just putting a single-quote in the static HTML portion of the code. Moreover, you aren’t supposed to nest <% ... %> inside each other, as far as my searches tell me. So your single line is really confusing… because if it’s outside of a containing <% ... %>, then I don’t see why you think that the ' is commenting anything. And if it’s inside a containing <% ... %>, I don’t see why you have another <% ... %> nested inside. This is why a complete example is needed for us to be able to see what you mean. It doesn’t have to be huge – my example document from earlier (with the . ' what goeth here in the rendering) is only about a dozen lines.

                        And per the Microsoft documentation linked in the Lexilla issue,

                        <% i = i +1 'This statement increments i. (This script will work.) %>
                        

                        … is valid / complete syntax: the ' comment only comments out the text portion – the %> closer tag does not get hidden by the comment inside the <% ... %>.

                        Taking that line, and putting it into zufuliu.asp with a few other lines,

                        Text before
                        <% i = i +1 'This statement increments i. (This script will work.) %>
                        text after
                        <br>i = <%= i %>
                        

                        … to actually render something in the webpage, I see:
                        d8c908a2-4250-41f8-85a7-07f073fe642a-image.png
                        And Notepad++ is highlighting that as expected: the i = i + 1 is code, the 'This statement increments i. (This script will work.) is a comment, and the %> still closes the code, and everything after still runs.

                        Moreover, if I use a ' to “comment out” the <% ... %> line, it doesn’t actually make that code not run. It just interprets the ' as part of the HTML, not as part of the VBSCRIPT.
                        2a2540ba-16a9-4beb-957d-da2b7353ae7e-image.png

                        So your single line of ' <% Sub ApplyPasswordReset(oConnGlobal, postData, ByRef result). %> does nothing to show us where the bug might be, or what’s going wrong.

                        To be able to prove whether there’s a bug in Lexilla, a bug in Notepad++, or just user error, you need to give a complete known-good ASP code that shows the problem, that we can open with IIS to see that the code works as expected (ie, to show it’s valid ASP that you are trying to edit), that we can open with Notepad++ to see that it highlights “wrong”, and opens with SciTE to show that it highlights “right” or “wrong” depending on what you say (the last time, I believe I understood you to say that it was rendering right in SciTE),

                        If you want help, you need to give all the information from the 3 simple steps I put in my last post and reiterated here. Please understand, I am not saying this to be mean: the Lexilla people do not believe there is a bug in their library (the issue has been closed as PEBKAC). Nothing you have shown us gives evidence of a bug in Notepad++. If you don’t provide exactly what I described above, your report will be diagnosed to be user error, and nothing will ever happen.

                        At this point, it’s your decision as to what happens next.

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post
                        The Community of users of the Notepad++ text editor.
                        Powered by NodeBB | Contributors