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

📄 cont3.htm

📁 费尔防火墙源代码
💻 HTM
字号:
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style>A:link {
	TEXT-DECORATION: underline
}
.105V {
	FONT-FAMILY: 宋体; FONT-SIZE: 10.5pt
}
td {
	FONT-FAMILY: 宋体; FONT-SIZE: 9pt
}
.90VE {
	FONT-FAMILY: arial; FONT-SIZE: 9pt
}
A:visited{COLOR:blue}
A:hover {
	COLOR: red
}
A.bb {
	TEXT-DECORATION: underline
}
A.bbr {
	COLOR: #ff0000; TEXT-DECORATION: underline
}
</style>
<script language="vbscript">
	function add_onsubmit()
		if	add.sComputerID.value="" then 
			msgbox "必须输入计算机编号。"
			add_onsubmit=false
		elseif len(add.sComputerID.value )<3 then
			msgbox "计算机编号必须为 3 位,不够 3 位前面补 0,请重新输入。"
			add_onsubmit=false
		else
			add_onsubmit=checkIP(add.sComputerIP.value)
		end if 
	end function
	
	function checkIP(strIP)
		checkIP=true
		if strIP="" then
			msgbox "必须输入 IP 地址,请按 255.255.255.255 格式输入。"
			checkIP=false
		else
			dim IPlen,ip1,ip2,ip3,ip4
			dim i,j
			dim tmpStr
			
			j=1
			IPlen=len(strIP)
			for i=1 to IPlen
				tmpStr=mid(strip,i,1)
				if tmpStr<>"." then
					select case j
						case 1:ip1=ip1 & tmpStr
						case 2:ip2=ip2 & tmpStr
						case 3:ip3=ip3 & tmpStr
						case 4:ip4=ip4 & tmpStr
					end select
				else
					j=j+1
				end if
				
			next 
			
			if j<>4 or ip2="" or ip3="" or ip4="" or not isnumeric(ip1) _
				or not isnumeric(ip2) or not isnumeric(ip3) or not isnumeric(ip4) _
				or len(ip1)>3 or len(ip2)>3 or len(ip3)>3 or len(ip4)>3 then
				
				msgbox "IP 地址不合法,请按 255.255.255.255 格式输入。"
				checkIP=false
			else
				if cint(ip1)<0 or cint(ip1)>255 or cint(ip2)<0 or cint(ip2)>255 or _
					cint(ip3)<0 or cint(ip3)>255 or cint(ip4)<0 or cint(ip4)>255 then
					msgbox "IP 地址不合法,请按 255.255.255.255 格式输入,每个单元必须为 0-255。"
					checkIP=false
				else
					add.sComputerIP.value=cint(ip1) & "." & cint(ip2) & "." & cint(ip3) & "." & cint(ip4)
				end if
			end if
		end if
	end function
</script>

</head>
<body>

<table border="0" cellPadding="0" cellSpacing="0" height="100%" width="100%">
  <tbody> 
  <tr> 
    <td height="145" rowSpan="7" width="9"></td>
    <td height="145" rowSpan="7" vAlign="top" colspan="4"> 
      <p><b><font size="3">主界面操作</font></b></p>
      <p>  主界面上提供封包监视、日志查询、控管规则、系统设置和关于五个选项卡分别代表五个功能模块的操作,后面分别对每个模块进行详细描述。 </p>
      <p>  另外有确定、取消、应用、帮助四个功能按钮。这四个按钮的功能分别为:</p>
      <p>  1. 确定:首先调用"应用"功能按钮保存所做的改动,然后关闭主窗口。<br>
          2. 取消:首先提示是否保存改动,然后根据用户操作做保存或者放弃改动的操作,最后关闭主窗口。<br>
          3. 应用:保存所做的改动,改动只针对控管规则和系统设置,只有控管规则或者系统设置做出改动时才会激活应用按钮。 <br>
          4. 帮助:启动联机帮助。 </p>
      <p>  注意:关闭主窗口并没有退出Xfilter。要想退出Xfilter,在任务栏上的Xfilter图标上单击鼠标右键,然后单击弹出菜单的"退出"功能按钮。 
      </p>
      <p><b><font size="3">请参阅</font></b> </p>
      <p>  <a href="cont0.htm">功能简介</a> - <a href="cont1.htm">弹出菜单</a> - <a href="cont2.htm">图标说明</a> 
        - <a href="cont4.htm">封包监视</a> - <a href="cont5.htm">日志查询</a> - <a href="cont6.htm">控管规则</a> 
        - <a href="cont7.htm">系统设置</a> - <a href="cont8.htm">关于</a> - <a href="cont9.htm">用户注册</a></p>
      </td>
  </tr>
  <tr></tr>
  <tr></tr>
  <tr></tr>
  <tr></tr>
  <tr></tr>
  <tr></tr>
  </tbody> 
</table>

</body>
</html>

⌨️ 快捷键说明

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