<input type="radio" name="option" value="1" checked="checked">1号 罗先生
<div id=0 style="background-color:#acd6ff; width:0; height:20px; border-width:0px;">
</div>
<%
int num1;
if(application.getAttribute("num1")==null){
num1=0;
}
else{
num1=((Integer)application.getAttribute("num1")).intValue();
}
num1++;
application.setAttribute("num1",num1);
%>
<label id="label0"><%=num1 %></label>票
这样运行后,不仅投票后票数会增加,访问一次,票数也会增加,怎么办
Stardust1001
错过了年华