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

    <!-- #include file="page_admin_user_header.html.asp" -->             
<!-- ##### 主栏目开始 ##### --->
<%Call ActionView(CONST_ACTION_FUNC)%>
<script language="Javascript">
//表单校验
function verify(theform)
{
	<%=TAG_strVerifyCode%>
	if (theform.iptPassword.value != theform.iptPassword2.value)
	{
		alert("两次输入的密码不一致");
		theform.iptPassword.focus();
		return false;
	}
	return true;
}
</script>
<div id="main_content">
	<div id="main_content_title">
		<div class="note">修改用户[<%=Request.QueryString("UserAccount")%>]密码</div>
	</div>
	<form action="admin_user_passmdy_save.asp" method="post" id="vbform" name="vbform" onSubmit="return verify(this)">
	<div id="main_content_table">
		<table width="100%" border="0" cellspacing="4" cellpadding="0">
			 <input value="<%=Request.QueryString("intUserId")%>" name="intUserId"  type="hidden" />
			<tr>
				<td class="label">密码:</td>
				<td>
					<input class="text" name="iptPassword" maxlength="20" type="password" /><span class="asterisk">*</span></td>
				<td class="label">密码确认:</td>
				<td class="label">
					<input class="text" name="iptPassword2" maxlength="20" type="password" /><span class="asterisk">*</span>
				</td>
			</tr>
		</table>
	</div>
	<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" -->