First here:
<html xmlns="http://www.w3.org/1999/xhtml">
I get the warning: "Undefined attribute name (xmlns).
" What's the best way to solve this in Eclipse?
I also get an error here "Missing quotes for attribute value (it refers to center)
<table align=center>
<% if(action!=null && "sendemail".equals(action)){
if(!"".equals(error)){%><tr><td colspan=2 align=center>
<span class="redtext"><%=error%></span></td></tr> <%
}
}
%>
two questions: how do I fix this and where do I set DOCTYPE?
Thanks