I have saved my document as a jspx file and have tried a variety of ways to add links to a stylesheet.
mosiac tells me this :
This XML file does not appear to have any style information associated with it.
and displays a nice xml file that looks like it should not a web page for logging in.
What am I missing?
my logon.jspx is follows. thanks mas
<html
xmlns="http://www.w3c.org/1999/xhtml"
xmlns:html="http://jakarta.apache.org/struts/tags-html"
xmlns:bean="http://jakarta.apache.org/struts/tags-bean" >
<html:xhtml/>
<head>
<title>Logon yp_results</title>
</head>
<body>
<html:errors/>
<html:messages id="message" message="true">
<font color="red">
<bean:write name="message"/>
</font>
<br/>
</html:messages>
<html:form action="/Logon" focus="logonid">
<center>
<table border="0" width="100%">
<tr>
<th align="right"> User ID: </th>
<td align="left">
<html:text property="logonid" size="15" maxlength="15"/>
</td>
</tr>
<tr>
<th align="right"> Password: </th>
<td align="left">
<html:password property="password" size="15" maxlength="15"
redisplay="false"/>
</td>
</tr>
<tr>
<td align="right">
<html:submit property="submit" > Submit </html:submit>
</td>
<td align="left">
<html:reset > Reset </html:reset>
</td>
</tr>
</table>
</center>
</html:form>
</body>
</html>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]