|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP最大的缺点在于网络的安全性和可靠性,企业将经营数据放在开放的平台上,最大的担忧就是如何保证这些数据不被其他人破坏。filesystemobject<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title>FileSystemObject组件应当实例</title>
</head>
<body>
<inputname="B0"type="button"value="创立文本文件"onClick="window.location=test1.asp?type=crea">
<inputname="B1"type="button"value="读取文件内容"onClick="window.location=test1.asp?type=read">
<inputname="B2"type="button"value="增加文件内容"onClick="window.location=test1.asp?type=add">
<inputname="B3"type="button"value="修正文件内容"onClick="window.location=test1.asp?type=edit">
<inputname="B4"type="button"value="删除文件内容"onClick="window.location=test1.asp?type=dele">
<%
read="michael.txt"
猎取文件实在路径
read=LEFT(Server.MapPath(Request.ServerVariables("PATH_INFO")),InstrRev(Server.MapPath(Request.ServerVariables("PATH_INFO")),""))&read
response.write"文件路径:"&read&"<br>"输入文件实在路径
%>
<hr>
<%ifrequest.querystring("type")="crea"then%>
<formaction="test1.asp?type=crea"method="post"name="form1">
请输出文件名:<inputname="T1"size="45">.txt<br>
请输出文件内容:<textareaname="D1"cols="50"rows="5"></textarea>
<inputname="bu"type="Submit"value="提交">
</form>
<%endif%>
<%ifrequest.querystring("type")="add"then%>
<formaction="test1.asp?type=add"method="post"name="form1">
<textareaname="D1"cols="70"rows="5"></textarea>
<inputname="bu"type="Submit"value="提交">
</form>
<%endif%>
<%
ifrequest.querystring("type")="edit"then
Setfs=CreateObject("Scripting.FileSystemObject")
iffs.FileExists(server.mappath("michael.txt"))then
Setts=fs.OpenTextFile(server.mappath("michael.txt"))
%>
<formaction="test1.asp?type=add"method="post"name="form1">
<textareaname="D1"cols="70"rows="5"><%=ts.ReadLine%></textarea>
<inputname="bu"type="Submit"value="提交">
</form>
<%
else
response.write"找不到此文件"
endif
endif
%>
<%
ifrequest.querystring("type")="crea"andrequest.form""then创立新的文件
Setfs=CreateObject("Scripting.FileSystemObject")
iffs.FileExists(server.mappath(request.form("T1")&".txt"))then判别文件是不是存在
response.write"<script>alert(该文件已存在);window.location=test1.asp?type=crea;</script>"
else
Setts=fs.CreateTextFile(server.mappath(request.form("T1")&".txt"),True)
ts.close
Setts=fs.OpenTextFile(server.mappath(request.form("T1")&".txt"),2,True)
ts.WriteLine(request.form("D1"))写进文件内容注:WriteLine是到场内容并换行,Write是到场内容不换行
ts.close
response.write"<script>alert(创立文件乐成);window.location=test1.asp?type=read;</script>"
endif
setfs=nothing
endif
ifrequest.querystring("type")="read"then读取文件内容
Setfs=CreateObject("Scripting.FileSystemObject")
iffs.FileExists(server.mappath("michael.txt"))then判别文件是不是存在
Setts=fs.OpenTextFile(server.mappath("michael.txt"))
response.write"文件内容:"
dountilts.AtEndOfStream判别是不是读到文件最初一行
response.writets.readLine&"<br>"读取文件逐行输入
loop
ts.close
else
response.write"找不到此文件"
endif
setfs=nothing
endif
ifrequest.querystring("type")="add"andrequest.form""then增加文件内容
Setfs=CreateObject("Scripting.FileSystemObject")
iffs.Fi</p>想法是和程序员的想法不一样的.至于为什么.大家去想一想.跟心理学有关的 |
|