@SuppressWarnings("serial")
public class SelectTag extends BodyTagSupport {
@Override
public int doStartTag() throws JspException {
try {
StringBuffer results = new StringBuffer("<select");
if(name != null){
results.append(" name=\"");
results.append(name);
results.append("\"");
}
if(style != null){
results.append(" style=\"");
results.append(style);
results.append("\"");
}
results.append(">");
pageContext.getOut().write(results.toString());
} catch (IOException ex) {
throw new JspTagException("错误");