分享
 
 
 

web文件管理器的后续开发。。。

王朝asp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

今天看了一下ccopus的DM45,做的很不错,在这之前我也想做一个了,做一个跟windows资源管理器非常类似的程序。看到dm45以后觉得自己还是放弃吧,WEB方式的文件管理无论如何都是在权限允许内操作,而且大家实现的也都差不多,无非是在外观上,易操作上做文章,文件管理本来作用也不是很大,如果是多用户的权限比较难控制,既然别人做了,我想还是不要重复劳动的好,况且也不见得能做的好。下面的代码贴出来留个纪念,实现了文件的本地排序。但目录之间的层次还没有搞好。有兴趣的可以拿去参考,理论上应该可以实现跟windows资源管理器极类似的界面和操作方式。整个界面都采取无刷新方式。用XMLHTTP来执行后台代码,用JS来修改前台显示。这里体现了一种思想,希望对初学者能有个帮助。

代码如下:

<title>WEB文件管理器2.0版 http://asp2004.net</title>

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

<style type="text/css">

<!--

a {

font-size: 9pt;

color: #3300CC;

text-decoration: none;

}

body {

font-size: 9pt;

margin-left: 0px;

margin-top: 0px;

margin-right: 0px;

margin-bottom: 0px;

line-height: 20px;

background-color: #EEEEEE;

}

td {

font-size: 9pt;

line-height: 20px;

}

.tx {

border-color:#000000;

border-left-width: 0px;

border-top-width: 0px;

border-right-width: 0px;

border-bottom-width: 1px;

font-size: 9pt;

background-color: #EEEEEE;

}

.tx1 {

font-size: 9pt;

border: 1px solid;

border-color:#000000;

color: #000000;

}

-->

</style>

<%

'版权声明:本代码仅供学习研究之用,本人不对因使用本程序而造成的任何后果负责。未经作者书面许可不得用于商业用途。

'QQ:103895

'email:quxiaohui_0@163.com

'http://asp2004.net

Server.ScriptTimeout = 999

action = Request("action")

temp = Split(Request.ServerVariables("URL"), "/")

url = temp(UBound(temp))

Const pass = ""'登陆密码

'登陆验证

Set fso = CreateObject("Scripting.FileSystemObject")

Path = Request("foldername")

If Path = "" Then Path = server.MapPath("./")

ShowFolderList(Path)

Set fso = Nothing

'列出文件和文件夹

Function ShowFolderList(folderspec)

temp = Request.ServerVariables("HTTP_REFERER")

temp = Left(temp, Instrrev(temp, "/"))

temp1 = Len(folderspec) - Len(server.MapPath("./")) -1

If temp1>0 Then

temp1 = Right(folderspec, CInt(temp1)) + "\"

ElseIf temp1 = -1 Then

temp1 = ""

End If

tempurl = temp + Replace(temp1, "\", "/")

uppath = "./" + Replace(temp1, "\", "/")

upfolderspec = fso.GetParentFolderName(folderspec&"\")

Set f = fso.GetFolder(folderspec)

%>

<script language="javascript">

function File(Name, Size, Type, DateCreated, DateLastAccessed, DateLastModified, Attributes)

{

this.Name = Name;

this.Size = Size;

this.Type = Type;

this.DateCreated = DateCreated;

this.DateLastAccessed = DateLastAccessed;

this.DateLastModified = DateLastModified;

this.Attributes = Attributes;

}

function Tree(id, name)

{

this.id = id;

this.name = name;

this.root = new Array();

this.length = 0;

this.Add = function(file)

{

this.root.push(file);

this.length += 1;

}

this.max = function(f1, f2, field)

{

switch( field )

{

case "Name":

return f1.Name.toLowerCase()>f2.Name.toLowerCase()? true:false;

case "Size":

return f1.Size>f2.Size? true:false;

case "Type":

//if (field == '???t?D') return false;

return f1.Type>f2.Type? true:false;

case "DateCreated":

return f1.DateCreated>f2.DateCreated? true:false;

case "DateLastAccessed":

return f1.DateLastAccessed>f2.DateLastAccessed? true:false;

case "DateLastModified":

return f1.DateLastModified>f2.DateLastModified? true:false;

case "Attributes":

return f1.Attributes>f2.Attributes? true:false;

default:

return false;

}

}

this.sort=function(field, order)

{

//order:desc asc

//field:Name Size

var len = this.root.length;

if( len < 2 ) return;

var tmp;

for(var i=0; i<len-1; i++)

{

for(var j=i+1; j<len; j++)

{

if( order == "desc")

{

if( !this.max( this.root[i], this.root[j], field ) )

{

tmp = this.root[i];

this.root[i] = this.root[j];

this.root[j] = tmp;

}

}

else if ( order == "asc")

{

if( this.max( this.root[i], this.root[j], field ) )

{

tmp = this.root[i];

this.root[i] = this.root[j];

this.root[j] = tmp;

}

}

}

}

}

}

function fieldcode(field)

{

if (order == 'desc')

{

order = 'asc';

}

else

{

order = 'desc';

}

tree.sort(field, order);

}

function show()

{

//for (var i=0;i<form1.elements.length;i++){var e = form1.elements[i];if (e.type == "checkbox")e.checked = form1.chkall.checked;}

str = '<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#EEEEEE"> <td><div align="center">操作<input type="checkbox" name="chkall" onclick=""></div></td> <td><div align="center"><a onclick="fieldcode(\'Name\');show();" href=#>文件名</a></div></td> <td><div align="center"><a onclick="fieldcode(\'Size\');show();" href=#>大小</a></div></td> <td><div align="center"><a onclick="fieldcode(\'Type\');show();" href=#>类型</a></div></td> <td><div align="center"><a onclick="fieldcode(\'DateCreated\');show();" href=#>创建时间</a></div></td> <td><div align="center"><a onclick="fieldcode(\'DateLastAccessed\');show();" href=#>上次访问时间</a></div></td> <td><div align="center"><a onclick="fieldcode(\'DateLastModified\');show();" href=#>上次修改时间</a></div></td> <td><div align="center"><a onclick="fieldcode(\'Attributes\');show();" href=#>属性</a></div></td> </tr>';

var f;

for(i=0;i<tree.length;i++)

{

f = tree.root[i];

str += '<tr bgcolor="#EEEEEE" onmouseover=this.bgColor=\'#F3F6FA\'; onmouseout=this.bgColor=\'#EEEEEE\';> <td><center><input type="checkbox" name="f" value="'+tree.id+"\\\\"+f.Name+'"></center></td> <td><a href="'+f.url+'">'+f.Name+'</a></td> <td>'+f.Size+'</td> <td>'+f.Type+'</td> <td>'+f.DateCreated+'</td> <td>'+f.DateLastAccessed+'</td> <td>'+f.DateLastModified+'</td> <td>'+f.Attributes+'</td> </tr>';

}

str += '</table>';

eval(list).innerHTML = str;

}

var field = 'Name';

var order = 'desc';

var str;

</script>

<body onLoad="show()">

<form name="form1" method=post action="">

<span id="list"></span>

</form>

</body>

<%

Response.Write("<script language=javascript>"&vbcrlf)

Response.Write("var tree = new Tree('"&jscode(f.path)&"','"&jscode(f.name)&"');"&vbcrlf)

Set fc = f.SubFolders

For Each f1 in fc

Response.Write("tree.Add(new File('"&f1.name&"',"&f1.size&",'"&f1.Type&"','"&f1.DateCreated&"','"&f1.DateLastAccessed&"','"&f1.DateLastModified&"','"&f1.Attributes&"'));"&vbcrlf)

Next

set fc = f.Files

For Each f1 in Fc

Response.Write("tree.Add(new File('"&f1.name&"',"&f1.size&",'"&f1.Type&"','"&f1.DateCreated&"','"&f1.DateLastAccessed&"','"&f1.DateLastModified&"','"&f1.Attributes&"'));"&vbcrlf)

Next

Response.Write("</script>")

End Function

function jscode(s)

jscode = replace(s,"\","\\\\")

end function

%>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有