TopAndBottom.java
上传用户:xiao85513
上传日期:2010-01-11
资源大小:2160k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

Java

  1. package tagclass;
  2. import javax.servlet.jsp.*;
  3. import javax.servlet.jsp.tagext.*;
  4. public class TopAndBottom extends TagSupport
  5. {
  6.   String title;
  7.    public String getTitle()
  8.   {
  9.     return this.title;
  10.   }
  11.   public void setTitle(String newTitle)
  12.   {
  13.     this.title=newTitle;
  14.   }
  15.   
  16.   public int doStartTag() throws JspException
  17.   {
  18.     try
  19.     {
  20.       pageContext.getOut().print("<table height=100% width=100%><tr height=10%><Td align=center><h1>*"+this.getTitle()+"*</h1></td></tr><TR valign=top><TD align=center>");
  21.     }
  22.     catch(Exception e)
  23.     {
  24.       throw new JspException(e);
  25.     }
  26.     return EVAL_BODY_INCLUDE;
  27.   }
  28.   
  29.   public int doEndTag() throws JspException
  30.   {
  31.     try
  32.     {
  33.       String s="</td><tr><tr height=5% valign=bottom><Td><div align=right><a href='mailto:cyndi2@mail.china.com'>联系cyndi</a>|<a href='help.htm'>查看帮助</a>|<a href='http://herald.seu.edu.cn'>艺文频道</a></div><div align=center>herald版权所有</div></td></tr></table>";
  34.       String t=new String(s.getBytes("gb2312"), "ISO8859_1");
  35.       pageContext.getOut().print(t);
  36.     }
  37.     catch(Exception e)
  38.     {
  39.      throw new JspException(e);
  40.     }
  41.     return EVAL_PAGE;
  42.   }
  43. }