欢迎光临
我们一直在努力

asp模仿 Lotus Notes 的界面程序-ASP教程,ASP应用

建站超值云服务器,限时71元/月

《%

仿 lotus notes 的界面程序

作者:塞北的雪

创作日期:2002年3月

修改日期:2005年3月

为了安全和共享的方便,将其中asp程序的标记改成中文字符,使用时可以批量替换回

%〉

<html>

<head>

<meta http-equiv="content-type" content="text/html; charset=gb2312">

<style>

.theader{font-weight:bold;background-color: #d0d0d0; color: #000000; border-left:

1 solid #ffffff; border-right: 1 solid #000000; border-top: 1 solid #ffffff;

border-bottom: 1 solid #000000}

.theaderpush{font-weight:bold;background-color: #d0d0d0; color: #000000; border: 1

solid #707070;}

</style>

<title>模仿lotus notes特效</title>

<script language=javascript>

var yesh="√"; //选中后显示的标志

var noh= ; //未选中时的某人显示

var ifpush=no; //移动鼠标选中的时候用于控制,yes表示鼠标已经按下,拖动有

效;no表示鼠标已经泰起来了,再移动鼠标已经没有作用了

var fi=yes; //移动鼠标选中的时候用于控制,yes可以处理当前单元格,no

则不能处理

//默认为yes,当我们进入某个单元格区域,则处理他,然后改为

no,则不再

//对该单元格处理,当离开单元格时又改为yes,又可以处理下一

个进入的单元格

//执行数据删除

function delinfo(icount)

{

var pkey=new string();

if(icount>0)

{

for(var i=1;i<=icount;i++)

{

if (document.getelementbyid("a" + i).innertext==yesh)

{pkey += ("" + document.getelementbyid("pkey" + i).value + ",")}

//此处生成关键字串,由于是字符型,故在每个关键字的两侧加了单引号,

//然后用逗号连接,如果是数字型,则不用单引号。

}

}

if(pkey!="")

{

pkey=pkey.substring(0,pkey.length-1);

if(confirm("确定要删除选定的信息吗?"))

{

document.getelementbyid("delpkey").value=pkey;

document.getelementbyid("delform").submit();

}

}

}

//执行数据修改,无论选中多少,但只对第一个进行修改

function editinfo(icount)

{

var pkey=new string();

if(icount>0)

{

for(var i=1;i<=icount;i++)

{

if (document.getelementbyid("a" + i).innertext==yesh)

{pkey += document.getelementbyid("pkey" + i).value;

break;}

}

}

if(pkey!="")

{

window.open("editinfo.asp?unid=" + pkey,"_blank");

//此处进入边界界面,对选中信息进行编辑。editinto.asp代码没有编写。

}

}

function md()

{ifpush=yes;}

function mu()

{ifpush=no;}

//拖拉选取

function wr(whotd)

{

if (ifpush==yes)

{

if (fi==yes)

{ fi=no;

if (whotd.innertext!=noh)

{whotd.innertext=noh;}

else

{whotd.innertext=yesh;}

}

}

}

//单击选取

function wrone(whotd)

{

if (whotd.innertext!=noh)

{whotd.innertext=noh;}

else

{whotd.innertext=yesh;}

}

</script>

</head>

《%

连接数据库

set db=server.createobject("adodb.connection")

dim dbpath

dbpath = server.mappath("crc\configinfo\dispatch.mdb")

dim mmm

mmm="driver={microsoft access driver (*.mdb)};dbq="& dbpath

db.open mmm

执行删除

if request("delpkey")<>"" then

response.write "del:" & request("delpkey")

response.redirect request.servervariables("path_info")

此处代码属于多余,但是可以避免刷新提示。根据需要,可以自由设计程序

end if

读取数据

set rs=server.createobject("adodb.recordset")

rs.open "select * from notes",db,3

%〉

<body onmousedown="md();" onmouseup="mu();" oncontextmenu="return false"

ondragstart="return false" onselectstart="return false">

<br><br><br><div align=center>

<table border="1" rules=none frame=hsides cellspacing=0 cellpadding=0 width="90%">

<tr>

<td width="4%" bgcolor="#ffffff" style="cursor:hand" >

<table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr><td class="theader"

onmousedown="javascript:this.classname=theaderpush;"

onmouseup="javascript:this.classname=theader;"

onmouseout="javascript:this.classname=theader;" >&nbsp;</td>

<td width="62%" onmousedown="javascript:this.classname=theaderpush;"

onmouseup="javascript:this.classname=theader;"

onmouseout="javascript:this.classname=theader;" class="theader" align="center"

><font size="2">标题</font></td>

<td width="34%" onmousedown="javascript:this.classname=theaderpush;"

onmouseup="javascript:this.classname=theader;"

onmouseout="javascript:this.classname=theader;" class="theader" align="center"

><font size="2">日期</font></td>

</tr>

《%if rs.recordcount>0 then

bgc="#daf0fe"

whi=0

j=0

rs.movefirst

do while not rs.eof

j=j+1%〉

<tr>

<td align=center id="a《%=j%〉"

onmouseover="wr(this);" onmouseout="javascrpt:fi=yes;"

onmousedown="wrone(this);" bgcolor="#ffffe8">

<p align="center">&nbsp;&nbsp;</p>

</td>

<input type="hidden" id="pkey《%=j%〉" value="

《%=rs("unid")%〉">

<td id="b《%=j%〉"

bgcolor="《%=bgc%〉"><font size="2">&nbsp;《%=rs("subject")%〉</font></td>

<td id="c《%=j%〉" bgcolor="《%=bgc%〉"

align=center><font size="2">《%=rs("disptime")%〉</font></td>

《%

if whi=0 then

bgc="#faaded"

whi=1

else

whi=0

bgc="#daf0fe"

end if

%〉

</tr>

《%rs.movenext

loop

end if%〉

</table>

</td>

</tr>

</table>

<br>

《%if rs.recordcount>0 then%〉

<input type=button name="editinfo" value="修改…"

onclick="editinfo(《%=rs.recordcount%〉);">

<input type=button name="delinfo" value="删除…"

onclick="delinfo(《%=rs.recordcount%〉);">

《%end if%〉

</div>

<div style=visibility:hidden;>

<form method="post" id="delform" action="《%=request.servervariables("path_info")%

〉">

<input type="hidden" id="delpkey" name="delpkey" value="">

</form>

</div>

</body>

</html>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp模仿 Lotus Notes 的界面程序-ASP教程,ASP应用
分享到: 更多 (0)