www.gusucode.com > CC校友录贴吧 CCBar源码程序asp编程 > template_a/page_admin_sort_mdy_form.html.asp

    <!-- #include file="page_admin_column_header.html.asp" -->             
<!-- 主板块开始 --->
<%Call ActionView(CONST_ACTION_FUNC)%>
<script language="Javascript">
//表单校验
function verify(theform)
{
	<%=TAG_strVerifyCode%>
	return true;
}


</script>
<div id="main_menu">
	<table id="main_menu_title" width="100%" border="0" cellspacing="2" cellpadding="0">
		<tr>
			<td class="main_menu_img">
				<a><div id="menu_img_show" name="menu_img_show" class="img_show"><span class="alt">[ +/- img ]</span></div></a></td>
			<td class="main_menu_active" id="main_menu_buttom" name="main_menu_buttom">
				<a href="">修改</a></td>
			<td class="main_menu_buttom" id="main_menu_buttom" name="main_menu_buttom">
				<a href="admin_sort_manage.asp">查看</a></td>
			<td class="main_menu_buttom" id="main_menu_buttom" name="main_menu_buttom">
				<a href="admin_sort_add_form.asp">创建</a></td>
			<td>&nbsp;</td>
		</tr>
	</table>
</div>
<div id="main_content">
	<div id="main_content_title">
		<div class="note">信息分类修改</div>
	</div>
	<form action="admin_sort_mdy_save.asp" method="post" id="vbform" name="vbform" onSubmit="return verify(this)">
	<div id="main_content_table">
	<% 
If IsObject(TAG_objDicUnit) AND TAG_objDicUnit.Exists("Exist") Then 
%><input type="hidden" name="intSortId" value="<%=TAG_objDicUnit.Item("SORT_ID")%>">
		<table width="100%" border="0" cellspacing="4" cellpadding="0">
			<tr>
				<td class="label" width="20%" >信息分类名称:</td>
				<td width="30%">
					<input  class="text" value="<%=TAG_objDicUnit.Item("SORT_NAME")%>" name="iptName" maxlength="20" value="" type="text" /><span class="asterisk">*</span></td>
				<td class="label" width="20%" >信息分类描述:</td>
				<td width="30%">
					 <input value="<%=TAG_objDicUnit.Item("SORT_DESC")%>" class="text" name="iptDesc" maxlength="50" value="" type="text" /><span class="asterisk">*</span> 
				</td>

			</tr>
			<tr>
				<td class="label" width="20%" >信息分类排序号:</td>
				<td width="30%">
					<input  class="text_min" value="<%=TAG_objDicUnit.Item("SORT_ORDER")%>" name="iptOrder" maxlength="3" value="" type="text" /><span class="asterisk">*</span>排序号大的将先显示</td>
				<td class="label" width="20%" >信息分类状态:</td>
				<td width="30%">
					 <select class="commselect" name="selIsOpen">
					 <option value="<%=TAG_objDicUnit.Item("SORT_IS_OPEN")%>">
					 <%
					 If TAG_objDicUnit.Item("SORT_IS_OPEN") = 0 Then
						Response.Write "开启"
					 Else
						Response.Write "关闭"
					 End If
					 %></option>
					 <option value="0">开启</option>
					 <option value="1">关闭</option>
					 </select><span class="asterisk">*</span> 
				</td>

			</tr>
		</table>
	</div>
	<% 
If IsObject(TAG_objDicUnit) Then
	Set TAG_objDicUnit = Nothing 
End If
End If%>
	<div id="main_content_action">
		<span>
		<input id="submit" name="submit" type="submit" value="提 交" /></span>
		<span>
		<input  name="reset" type="reset" value="重 来" /></span>
	</div>
	</form>
	<div id="main_content_foot">&nbsp;</div>
</div>

<!-- 主板块结束 -->   
<!-- #include file="page_admin_footer.html.asp" -->