回 帖 发 新 帖 刷新版面

主题:class="two" 是什么意思?

<span class="two"> <td height="80"aligh="center"valigh="middle"class="two"> 
其中的 class="two" 是什么意思?

int temp=-2;
temp=reg.update(sqli);
if(temp>0){
    session.setAttribute("id",id);
    response.sendRedirect("reg_ok.jsp");
    }else{
    session.setAttribute("error","注册失败");
    response.sendRedirect("../error/errorpage.jsp");
    }
temp用来表示什么?以及temp=-2、if(temp>0)??

回复列表 (共2个回复)

沙发

class="two",是样式表问题,你可以看看相关内容;
temp可能用来表示更新后的数据.

板凳

class="two"
two 是自定义的样式表.
是这样的格式
<style type = "text/css">
.two
{
   //样式属性
}
</style>

我来回复

您尚未登录,请登录后再回复。点此登录或注册