Jump to content

ahjuwel

Members
  • Posts

    4
  • Joined

  • Last visited

  • Days Won

    1

ahjuwel last won the day on August 20 2015

ahjuwel had the most liked content!

ahjuwel's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. sir, plz confirm me whether my site (username: ahjuwel Domain: ahjuwel.heliohost.org Control Panel URL: http://ahjuwel.heliohost.org/cpanel ) is enabled for java. if not when will i get java support for my site. plz tell me as soon as possible Edit
  2. i am very new java web developer and programmer. so plz tell me how i can host the java server pages(jsp) in your server. plz give me the instruction step by step.
  3. If you look below, you can easily see that this login form is sent to another page(LoginAction) by this command( <s:form action="LoginAction">). Here you can also see struts2 taglib. <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib uri="/struts-tags" prefix="s" %> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Login Form</title> </head> <body> <s:form action="LoginAction"> <table> <tr> <td> Email: </td> <td> <s:textfield name="email"/> </td> </tr> <br> <tr> <td> Password: </td> <td> <s:password name="password"/> </td> </tr> <br> <tr> <td></td> <td> <s:submit value="Login"/> </td> </tr> </table> <s:property value="error"/> </s:form> </body> </html>
×
×
  • Create New...