madupu Prasanna

Greenhorn
+ Follow
since May 18, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by madupu Prasanna

Hi,

Im new to JSP.

I have a sample custom tag handler which prints date and is compiled with out errors.

when i call the tag in my jsp file, it is printing nothing.

Tag Class :

public int doStartTag() throws JspException
{
dateStamp();
return Tag.EVAL_BODY_INCLUDE;
}
public int doEndTag() throws JspException
{
return Tag.EVAL_PAGE;
}
public void dateStamp() throws JspException
{
JspWriter out = pageContext.getOut();
try
{
out.write("<i>"+ new Date() +"</i>");
out.write("Class calling ... ");
}
catch(IOException e)
{
throw new JspException(e);
}
}

can anyone help me out?

Thanks in advance,
Prasanna
13 years ago
JSP
Hi,

I have SCWCD book by DavidBridgewater. I lost the CD which comes with the book . Do i get the CD contents somewhere else, instead of buying the book again for the CD ?

Thanks in advance.

Regards,
Pras