From c04c5a8489e6869059b207277d9b702a6a891708 Mon Sep 17 00:00:00 2001 From: bill Date: Sun, 25 Feb 2024 16:53:36 +0000 Subject: [PATCH] Removed temp auto-save file --- microemacs/test/jsp/demo.jsp# | 51 ----------------------------------- 1 file changed, 51 deletions(-) delete mode 100755 microemacs/test/jsp/demo.jsp# diff --git a/microemacs/test/jsp/demo.jsp# b/microemacs/test/jsp/demo.jsp# deleted file mode 100755 index 12e05e917..000000000 --- a/microemacs/test/jsp/demo.jsp# +++ /dev/null @@ -1,51 +0,0 @@ - -<%-- - This is an example from Sun for a template modified by me - - Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. - - This software is the proprietary information of Sun Microsystems, Inc. - Use is subject to license terms. - ---%> - -<%@ taglib uri="/tutorial-template" prefix="tt" %> -<%@ page errorPage="errorpage.jsp" %> -<%@ page import="java.util.*" %> -<% ResourceBundle messages = (ResourceBundle)session.getAttribute("messages"); %> -<%@ include file="screendefinitions.jsp" %> - - - - <tt:insert definition="bookstore" parameter="title"/> - - - -<% - = out.println ("Whatever you want to print") -%> -

Some more html -

- -<% - String parameter1 = new String (); - - if (request.getParameter ("parameter1") != null) { - parameter1 = request.getParameter ("parameter1"); - if (parameter1.equals ("something else")) { - - %> -

Whatever HTML you want to put here, hopefully indented but this is not as important

- <% - } - } - - //If you type the loop below you'll see that it indents using the position of the "<" - for (int i = 0; i < 10; i++) { - out.println (i + "something else"); - } - -%> - - -