Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Likewise, if there is a link to a "LogonLogin" action, and nothing else matches, then the "/LogonLogin.jsp" page is returned instead.

...

Code Block
html
html
titleLogon.jsp
borderStylesolid
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
  <title>Logon<<title>Login</title>
</head>
<body>
<s:form action="LogonLogin">
  <s:textfield label="User Name" name="username"/>
  <s:password label="Password" name="password" />
  <s:submit/>
</s:form>
</body>
</html>

...