Hello!
We are having some coding problems about a little javascript application that doesn´t work properly unless it goes along with this line of JSP code before html headers:
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
So It needs to go before the first line of the page where the javascript is, like this way:
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
We are looking for some help so as to know how to include this or whether it is possible to include it y any other way.
Thankyou in advance!!