Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

giba-rj

css no jsp!!!!

Recommended Posts

Eu to iniciando no css e jsp e sou meio pato ainda e tenho um formulário em jsp que queria mudar ele com css, mas esta faltando algum link para poder chamar o css se alguem puder me ajudar!!!!

http://forum.imasters.com.br/public/style_emoticons/default/cry.gif

 

<%@ taglib prefix="bean" uri="/WEB-INF/struts-bean.tld" %>

<%@ taglib prefix="html" uri="/WEB-INF/struts-html.tld" %>

 

 

 

 

<html:html>

 

 

 

 

 

<head>

 

 

 

<title><bean:message key="titulo.aplicacao"/></title>

 

<html:javascript formName="clienteForm"/>

 

</head>

<body bgcolor="white">

 

<html:errors/>

 

<html:form

 

 

 

action="cadastrarClienteMesmo.do?metodo=insereCliente"

focus="nome"

onsubmit="return validateClienteForm(this);">

 

<center><h3>Cadastro de Clientes</h3></center>

<table border="2" bordercolor="blue"align="center">

<tr>

<td>

<b><bean:message key="prompt.nome"/>: </b>

</td>

<td>

<html:text property="nome" size="60" maxlength="60"/>

    

<font color="red" size="2">

(required,mask[Apenas letras],maxlength[50])

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.idade"/>: </b>

</td>

<td>

<html:text property="idade" size="7" maxlength="7"/>

    

<font color="red" size="2">

(required,intRange[0-130])

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.dataNascimento"/>: </b>

</td>

<td>

<html:text property="dataNascimento" size="10" maxlength="10"/>

    

<font color="red" size="2">

(required,date[dd/MM/yyyy])

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.salario"/>: </b>

</td>

<td>

<html:text property="salario" size="10" maxlength="10"/>

    

<font color="red" size="2">

(required,mask[9999999(,99)Opcional])

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.cartaoDeCredito"/>: </b>

</td>

<td>

<html:text property="cartaoDeCredito" size="30" maxlength="30"/>

    

<font color="red" size="2">

(required,creditCard[Digite: 4914460125466063])

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.email"/>: </b>

</td>

<td>

<html:text property="email" size="50" maxlength="50"/>

    

<font color="red" size="2">

(required,email)

</font>

</td>

</tr>

 

<tr>

<td>

<b><bean:message key="prompt.senha"/>: </b>

</td>

<td>

<html:password property="senha" size="20" maxlength="20"/>

    

<font color="red" size="2">

(required,minlength[5],maxlength[14])

</font>

</td>

</tr>

 

<tr>

<td colspan="2">

 

</td>

</tr>

 

<tr colspan="2" align="center">

<td colspan="2" align="center">

<html:submit value="Enviar"/>

     

<html:reset value="Apagar"/>

</td>

</tr>

</table>

</html:form>

<p>

<center>

<html:link action="teste.do?prefix=/exercicio&page=/menuPrincipal.do">

Menu Principal

</html:link>

</center>

</body>

</html:html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.