网站运营
位置:首页>> 网站运营>> 用ASP实现网页保密的两种方法

用ASP实现网页保密的两种方法

  发布时间:2007-09-19 12:13:00 

标签:保密,网页,asp

在维护公司内部网站时碰到一个实际问题——MIS主管要求将一些技术文件放在网页上,且只能让MIS 的员工浏览。这就涉及到如何对网页保密的问题。
    最初我借助Frontpage和VBscript设计了一种方案,链接MIS技术页(此处预设为actpwdrst.htm)之前,先 链接actpwd.htm输入名称和密码(此处名称和密码都预设
  为“mis”),只有正确输入后,才能链接到actpwdrst.htm。 以下是它们的代码。
     Actpwd.htm 代 码 如 下:


< html > 
  < head > 
  < title > 密 码< /title > 
  < /head > 
  < body > 
  < form name=“form1” > 
  < input type=“hidden” 
  name=“VTI-GROUP”_ value=“0” > 
  < div align=“center” >< center >< p > 
  名 称< input type =“text” 
  name=“T1” size=_“20” > 
  密 码< input type =“password” 
  name=“T2”_ size=“20” > 
  < input type=“button” value=“ 
  确 认”_ name=“B1” > 
  < /p >< /center >< /div > 
  < /form > 
  < p > 
  < script language=“VBScript” > 
  < !- 
  sub b1_onclick() 
  if form1.t1.value=“mis” and_ form1.t2.value=“mis” then 
  document.location=_“actpwdrst.htm” 
  else 
  m1=msgbox(“ 密 码 错 误_ 
  ”,0+48, “Warring”) 
  end if 
  end sub 
  // -- > 
  < /script > 
  < /p > 
  < /body > 
  < /html > 
  Actpwdrst.htm 代 码 如 下: 
  < html > 
  < head > 
  < title > 密 码< /title > 
  < /head > 
  < body > 
  < p align=“center” > 
  < font face=“ 标 楷 体” size=“7” color=“0000ff” > 
  < strong > 
  你 已 成 功 登 录 ! 
  < /strong > 
  < /font > 
  < /p > 
  < /body 
  < /html > 


细心的朋友可能已发现这种方案的不可靠性——输入和判断都在actpwd.htm中完成,不管输入的名称和密码是不是正确的,只要记住了actpwdrst.htm 所在的URL,根
  本就不需要通过actpwd.htm 就可直接链接actpwdrst.htm。所以这种方案的保密系数就不是很好。

0
投稿

猜你喜欢

手机版 网站运营 asp之家 www.aspxhome.com