kra, tenta tirar o sinal de “igual” na sua linha 13.
<%= alguma_Coisa_Que_Retorne_String... %>
Sempre que há o igual, isso significa que é uma expressão. Isso informa ao container para por o resultado da espressão como parâmetro de um out.write(); no Servlet gerado apartir do seu JSP.
Qdo não há “=” é “Scriptlet”(Lembrando que scriptles não são recomendados por motivos de boas práticas)
[quote=kallunga]kra, tenta tirar o sinal de “igual” na sua linha 13.
<%= alguma_Coisa_Que_Retorne_String... %>
Sempre que há o igual, isso significa que é uma expressão. Isso informa ao container para por o resultado da espressão como parâmetro de um out.write(); no Servlet gerado apartir do seu JSP.
Qdo não há “=” é “Scriptlet”(Lembrando que scriptles não são recomendados por motivos de boas práticas)
Depois posta o result vlw[/quote]
Cara, o código da linha 13 vai ficar assim?
String nome request.getParameter("Nome");
Erros:
[code]An error occurred at line: 14 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:58: ‘)’ expected
out.print( request.getParameter(“Nome”);
^
An error occurred at line: 14 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:62: illegal start of expression
);
^
An error occurred at line: 23 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:71: illegal start of expression
out.print( }
^
An error occurred at line: 23 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:74: illegal start of expression
);
^
An error occurred at line: 33 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:84: illegal start of expression
}
^
An error occurred at line: 33 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\fabiobissoli.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\WebTeste\org\apache\jsp\index_jsp.java:85: illegal start of expression
);
^
6 errors[/code]