⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filtertype.asp

📁 办公自动化系统
💻 ASP
字号:
<%'--------------------------------------------------------------------------
'      Project: AMBER-SOFT网络办公系统
'      Module : 联系人
'      By: imafar
'      Discription: 列出谋联系人所有资料活动
'--------------------------------------------------------------------------%>

<%if session("userid")="" then
	response.write "<SCRIPT LANGUAGE='JavaScript'>"&chr(13)
			response.write "<!--"&chr(13)
			response.write "parent.location.href=""/error/error.htm"""&chr(13)&chr(13)
			response.write "//-->"&chr(13)
			response.write "</SCRIPT>"&chr(13)
end if
%>
<!--#include virtual="/_inc/GeneralADO.asp"-->
<html>
<head>
<title>联系人信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="<%=session("css")%>/person.css" type="text/css">
<SCRIPT LANGUAGE="JavaScript">
<!--
function fnGetInfo()
{
	alert(window.returnValue)
	window.returnValue = FilterTypeID.value;
	alert(window.returnValue)
}
function fnCancel()
{
	window.returnValue  = 1;
}

//-->
</SCRIPT>
</head>
<body bgcolor="#F5F4F1" leftmargin="0" topmargin="0" >
<%
	oRS.open "select * from FN_TABLE_FILTER_TYPE ",oCon
	while not oRS.eof
		if oRS("id")=1 then
			response.write "<INPUT TYPE=""radio"" NAME=""FilterTypeID"" value=""" & oRS("id") & """ checked>"&oRS("notes") & "<BR>"
		else
			response.write "<INPUT TYPE=""radio"" NAME=""FilterTypeID"" value=""" & oRS("id") & """>"&oRS("notes") & "<BR>"
		end if
		oRS.movenext
	wend
	oRS.close

%>
<INPUT VALUE="Ok" TYPE=button onclick="alert(1);fnGetInfo();window.close();">
<INPUT VALUE="Cancel" TYPE=button onclick="fnCancel();window.close();">
</body>
</html>

⌨️ 快捷键说明

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