用asp實現的iframe批量替換工具

來源:互聯網
上載者:User

說明:
1、此工具可以批量替換網站上asp,.txt,php,aspx...等等文本型的字元
2、將replace.asp上傳至網站根目錄後,運行http://網站網域名稱/replace.asp
3、為了安全,使用本程式後請刪除或更名 複製代碼 代碼如下:<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%option explicit
Response.Buffer=true
Response.CharSet="GB2312"
Server.ScriptTimeout=9999999
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-CN" />
<title>Iframe替換程式</title>
<style type="text/css">
<!--
#top
{
text-align:center;
margin:auto;
font-size:11pt;
}
#top_b
{
text-align:left;
width:350px;
border:1px solid #000000;
margin:auto;
padding:0px;
line-height:200%;
}
#top_b div
{
padding-left:8px;
padding-right:8px;
}
#ftitle
{
text-align:center;
width:350px;
background:silver;
font-weight:bold;
letter-spacing:5px;
font-size:15pt;
padding:3px 0 3px 0;
color:red;
margin:auto;
border:1px solid #000000;
border-width:1px 1px 0 1px;
}
#btm
{
text-align:center;
padding-top:8px;
padding-bottom:8px;
background:#ececec
}
textarea
{
width:330;
height:100px
}
#copyr
{
font-size:9pt;
text-align:center;
color:silver
}
-->
</style>
</head>
<body>
<%
if request.querystring("add")="yes" then
%>
<div id="top">
<div id="ftitle">程式處理結果</div>
<div id="top_b">
<div>
總檔案:<span style="color:red" id="allfile"> </span>個
替換過檔案:<span style="color:red" id="repfile"> </span>個
</div>
<div><br />被替換過檔案路徑列表↓<textarea id="txtreple" style="height:300px;overflow:auto"></textarea>
</div>
<div id="copyr"><br />
</div>
</div>
</div>
<%
dim oldstr :oldstr=request.form("lookstr") '源字串
dim newstr :newstr=request.form("replacestr") '新字串
dim rep : rep=cbool(request.form("bak")) '是否備份檔案,true為備份檔案
dim i : i=0 '總檔案個數
dim j : j=0 '被替換的檔案個數
function chkexistsfile(path) '判斷一個檔案是否存在,如果存在,返回true,否則返回false
dim fso
set fso=server.createobject("scripting.filesystemobject")
if fso.fileexists(path) then
chkexistsfile=true
else
chkexistsfile=false
end if
set fso=nothing
end function
function getfilecode(TemplateFname) '擷取一個檔案的代碼
Dim FSO, FileObj, FileStreamObj
Set FSO = CreateObject("scripting.filesystemobject")
If FSO.FileExists(TemplateFname) = False Then
getfilecode=""
Else
Set FileObj = FSO.GetFile(TemplateFname)
Set FileStreamObj = FileObj.OpenAsTextStream(1)
If Not FileStreamObj.AtEndOfStream Then
getfilecode = FileStreamObj.ReadAll
End If
End If
Set FSO = Nothing:Set FileObj = Nothing:Set FileStreamObj = Nothing
end function
sub jstxt(txt) '使用JavaScript
response.write "<script type=""text/JavaScript"" language=""JavaScript"">"
response.write "<!--"&chr(13)&chr(10)
response.write txt
response.write chr(13)&chr(10)&"//-->"
response.write "</script>"
end sub

sub getfolderfile(byval cpath) '替換某一個(子)檔案夾下的所有檔案
response.flush
dim fso : set fso=server.createobject("scripting.filesystemobject")
if fso.folderexists(cpath)=false then
jstxt("alert("" "&replace(cpath,"\","\\") & "不存在該檔案夾!"&" "") ")
response.end
end if
dim folders : set folders=fso.GetFolder(cpath)
dim sfile
for each sfile in folders.files
dim filecode : filecode=getfilecode(sfile)
dim filecode_b : filecode_b=filecode
if instr(filecode,oldstr) <> 0 and fso.GetExtensionName(sfile) <> "bak" then
jstxt("document.getElementById(""txtreple"").value+="""& replace(sfile,"\","\\") & "\r\n""" &chr(13)&chr(10))
jstxt("window.status="""& replace(sfile,"\","\\")&"""")
jstxt("document.title="""& replace(sfile,"\","\\")&"""")
filecode=replace(filecode,oldstr,newstr)
dim newfilecode : set newfilecode=fso.opentextfile(sfile,2)
newfilecode.write filecode
j=j+1
if rep then
dim newfilecode_b : set newfilecode_b=fso.opentextfile(sfile+".bak",2,true)
newfilecode_b.write filecode_b
end if
end if
i=i+1
jstxt("document.getElementById(""allfile"").innerHTML="""&i&"""")
jstxt("document.getElementById(""repfile"").innerHTML="""&j&"""")
next
dim sfolder
for each sfolder in folders.subfolders
getfolderfile(sfolder)
next
set fso=nothing

end sub

getfolderfile(server.MapPath(trim(request.form("pfolder")))) '調用程式
else
%>
<div id="top">
<form action="?add=yes" method="post" name="strform">
<div id="ftitle">Iframe批量替換程式</div>
<div id="top_b">
<div>
<p>檔案夾地址:
<input type="text" size="25" name="pfolder"/>
</p>
<p> 如根目錄請輸入:/,指定目錄,請輸入:"/目錄/"
</p>
</div>
<div>備份原檔案:<input type="checkbox" name="bak" value="true" /></div>
<div><br />尋找字串↓<textarea name="lookstr" rows="10"></textarea>
</div>
<div><br />替換尋找的字串↓<textarea name="replacestr"></textarea></div>
<div id="btm"><input type="submit" value=" 確定 " /></div>
<div id="copyr"><br />
</div>
</div>
</form>
</div>
<SCRIPT type="text/javascript" LANGUAGE="JavaScript">
<!--
function chk()
{
var forma=document.strform;
if(forma.pfolder.value=="")
{
alert("檔案夾地址不可為空");
forma.pfolder.focus();
return;
}
else
{
forma.pfolder.value=forma.pfolder.value.replace(/\//g,"\\");
forma.pfolder.value=forma.pfolder.value.replace(/。/g,".");
}
if(forma.lookstr.value=="")
{
alert("尋找字串不可為空!");
forma.lookstr.focus();
}
else if(forma.replacestr.value=="")
{
alert("替換尋找的字串不可為空");
forma.replacestr.focus();
}
else
{
forma.submit();
}
}
//-->
</SCRIPT>
<% end if %>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.