> I have a bean that returns a specialized date and it seems to work well like
> so...
<%
UserProfile ups;
%>
<input name=startDate value = <%=ups.getStartDate()%>>
that works fine but does not return "mm/dd/yyyy" like i would want so i tried
this...
<%
Date dt = new Date();
dt = ups.getStartDate().getDisplayDate();
%>
<input name=startDate value=<%=dt%>>
all these methods exist and work outside the JSP environment, but the JSP page
won't
even compile when i do this.. There is also no error. The browser just spins
around for ever.
The .java file gets created but no .class file.
any ideas?
thanks,
frank
--
Frank Starsinic
The Money Store
"Java - it's not just for breakfast anymore!"
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".