vote.ftl

来自「一个实用的CMS管理」· FTL 代码 · 共 70 行

FTL
70
字号
<HTML>
<HEAD>
<TITLE></TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<STYLE>
TD {
	COLOR: #646464; FONT-FAMILY: "宋体"; FONT-SIZE: 13px; TEXT-DECORATION: none
}
</STYLE>
<SCRIPT>
function fontZoom(size)
{
 document.getElementById('fontzoom').style.fontSize=size+'px'
}
</SCRIPT>
<META content="MSHTML 5.00.3700.6699" name=GENERATOR>
	<link href="../css/style.css" rel="stylesheet" type="text/css">
</HEAD>
<BODY> 
  <table width="193" border="0" align="center" cellpadding="0" cellspacing="0" background="../images/lbg.gif">
              <tr> 
                <td width="12"><img src="../images/lleft.gif" width="12" height="28"></td>
                <td width="10" align="center"><img src="../images/sanjiao.gif" width="3" height="5"></td>
                <td width="68" class="12b"><strong><a href="/page/vote/votelist.jsp" target="_self"><font color="#6699CC">网上调查</font></a></strong></td>
                <td width="103" align="right"><img src="../images/lright.gif" width="103" height="28"></td>
              </tr>
            </table>
            
            <table width="193" height="139" border="0" align="center" cellpadding="0" cellspacing="0" background="../images/ldabg.jpg">
              <tr>
                <td align="center" valign="middle">
	<SCRIPT LANGUAGE="JavaScript">
function subvote(domain)
{
	if(domain != "")
	{
		newWindow = window.open(domain,"voteresult","toolbar,resizable,scrollbars,dependent,width=500,height=320,left=150,top=30");
		newWindow.focus();
	}
	else
	{
		newWindow = window.open(domain,"voteresult","toolbar,resizable,scrollbars,dependent,width=500,height=320,left=150,top=30");
		newWindow.focus();
		document.vote.submit();
	}
}
</SCRIPT>
<form name=vote method="post"  action="../Vote_updateVotea.action" target="voteresult">
<table width="170" cellpadding="2" cellspacing="3">
<tr><td height="2"></td></tr>
<tr><td align=center><font color=red>${vote.vote_title}<font></td></tr>
<tr><td>${vote.vote_content}</td></tr>
<#list vote.votealist  as votea>
<#if vote.vote_type == "S">
<tr><td><input type="radio" class="check" name="vote_an" value="${votea.row_id}">${votea.vote_item}</td></tr>
</#if>
<#if vote.vote_type == "M">
<tr><td><input type="checkbox" class="check" name="vote_an" value="${votea.row_id}">${votea.vote_item}</td></tr>
</#if>
</#list>
</table>
<input type="hidden" name="row_id" value="${vote.row_id}">
<input type="button" name="viewresult1" value="提交" onClick="return subvote('');">
</form>
 </td>
 </tr>
 </table>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?