版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
ASP生成靜態(tài)網(wǎng)頁(yè)的多種方法使用FSO生成<%
'使用FSO生成
Setfs=CreateObject("Scripting.FileSystemObject")
NewFile=Server.MapPath("ud03/fso.htm")
'新建一文件fso.htm,若該文件已存在,則覆蓋它
Seta=fs.CreateTextFile(NewFile,True)
Response.Write"新文件已建立!"
a.close
File=Server.MapPath("ud03/fso.htm")
Settxt=fs.OpenTextFile(File,8,True)'打開(kāi)成可以在結(jié)尾寫(xiě)入數(shù)據(jù)的文件
data1="這句話(huà)是使用WriteLine方法寫(xiě)入的。!<Br>"
txt.WriteLinedata1
data2="這句話(huà)是使用Write方法寫(xiě)入的。<Br>"
txt.Writedata2
txt.Close
%>
使用XMLHTTP生成
<%
'使用XMLHTTP生成
Setxml=Server.CreateObject("Microsoft.XMLHTTP")
'把下面的地址替換成你的首頁(yè)的文件地址,一定要用http://開(kāi)頭的絕對(duì)路徑,不能寫(xiě)相對(duì)路徑
xml.Open"GET","/ud03/",False
xml.Send
BodyText=xml.ResponseBody
BodyText=BytesToBstr(BodyText,"gb2312")
Setxml=Nothing
Dimfso,MyFile
Setfso=CreateObject("Scripting.FileSystemObject")
SetMyFile=fso.CreateTextFile(server.MapPath("ud03.htm"),True)'生成的html的文件名
MyFile.WriteLine(BodyText)
MyFile.Close'使用Adodb.Stream處理二進(jìn)制數(shù)據(jù)
FunctionBytesToBstr(strBody,CodeBase)
dimobjStream
setobjStream=Server.CreateObject("Adodb.Stream")
objStream.Type=1
objStream.Mode=3
objStream.Open
objStream.WritestrBody
objStream.Position=0
objStream.Type=2
objStream.Charset=CodeBase
BytesToBstr=objStream.ReadText
objStream.Close
setobjStream=nothing
EndFunction
%>
使用XMLHTTP批量生成
<%
'使用XMLHTTP批量生成
dimstrUrl,Item_Classid,id,FileName,FilePath,Do_Url,Html_Temp
Html_Temp="<UL>"
Fori=1To30'需要生成的id:1到30
Html_Temp=Html_Temp&"<LI>"
Item_Classid=i
FileName="Archives_"&Item_Classid&".htm"'生成的html文件名
FilePath=Server.MapPath("/")&"\"&FileName
Html_Temp=Html_Temp&FilePath&"</LI>"
Do_Url="/ud03/index.php"'WEB路徑
Do_Url=Do_Url&"?p="&Item_Classid'WEB路徑之后的ID
strUrl=Do_Url
dimobjXmlHttp
setobjXmlHttp=Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open"GET",strUrl,false
objXmlHttp.send()
DimbinFileData
binFileData=objXmlHttp.responseBody
DimobjAdoStream
setobjAdoStream=Server.CreateObject("ADODB.Stream")
objAdoStream.Type=1
objAdoStream.Open()
objAdoStream.Write(binFileData)
objAdoStream.SaveToFileFilePath,2
objAdoStream.Close()
Next
Html_Temp=Html_Temp&"<UL>"
%>
<%
Response.Write("成功生成文件:")
Response.Write("<BR>")
Response.WriteHtml_Temp
%>ASP用標(biāo)簽替換的方法生成靜態(tài)網(wǎng)頁(yè)
大家都知道HTML靜態(tài)網(wǎng)頁(yè)更容易被搜索引擎收錄索引,動(dòng)態(tài)生成HTML網(wǎng)頁(yè),也可使網(wǎng)站的網(wǎng)頁(yè)數(shù)量增多,搜索引擎收錄的數(shù)量也可能多,再加下提高網(wǎng)頁(yè)的質(zhì)量也意未著什么呢?我想大家也知道。為了這個(gè),我決定了改變之前網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì)的方法,經(jīng)過(guò)多翻的研究及思考,對(duì)多種網(wǎng)頁(yè)動(dòng)態(tài)生成的方法,我比較喜歡用標(biāo)簽替換的方法成生網(wǎng)頁(yè)。標(biāo)簽替換法:這是我個(gè)人理解的定義,不知道別人怎么叫它的,呵呵!標(biāo)簽替換法,就是在設(shè)計(jì)好了的網(wǎng)頁(yè)模板中,放入自已設(shè)定的標(biāo)簽,然后用你需要顯示出來(lái)的東東替換它。如模板文件1這個(gè)模板我們保存在數(shù)據(jù)庫(kù)表中temptable<html>
<head>
<title>{$SiteName}</title>
</head>
<body>
{$Arc_List$}
</body>
<html>
在以上模板中我放入了兩個(gè)標(biāo)簽{$SiteName}網(wǎng)站名稱(chēng)和{$Arc_List$}文章列表,再來(lái)看下面的代碼<%
dimrs,SiteName,Arc_List,fso,myFile,FilePath,html
SiteName="我的第一個(gè)動(dòng)態(tài)生成的HTML網(wǎng)頁(yè)"
FilePath=Server.MapPath("/html/index.html")
setrs=server.createobject("adodb.recordset")
rs.open"select[temp]fromtemptable,conn,1,1
html=rs("temp")
'讀取網(wǎng)頁(yè)模板
rs.close
html=replace(html,"{$SiteName}",SiteName)
'用自定義的SiteName替換{$SiteName}標(biāo)簽
html=html&replace(html,"{$Arc_List$}",get_ArcList())
'用自定義的get_ArcList()函數(shù)替換{$Arc_List$}標(biāo)簽
setrs=nothing
conn.close
setconn=nothing
setfso=CreateObject("***ing.FileSystemObject")
'創(chuàng)建文件系統(tǒng)對(duì)象
SetMyFile=fso.CreateTextFile(FilePath,True)
'創(chuàng)建文件
MyFile.WriteLine(html)
'把htm代碼寫(xiě)入文件
MyFile.close
'關(guān)閉文件
SetMyFile=nothing
'釋放文件對(duì)象
setfso=nothing
'釋放系統(tǒng)文件對(duì)象
response.write"<***language='java***'>window.alert('文件生成成功了');</***>"
response.end()
Functionget_ArcList()
dimstr,str1
str1=""
str="<ul>{list}</ul>"
rs.open"selectTitle,urlfromArc"
whilenotrs.eof
str1=str1&"<li><ahref="&rs("url")&">"&rs("Title")&"</a></li>"
rs.movenext
wend
rs.close
str=replace(str,"{list}",Str1)
get_ArcList=str
%>
EndFunction
以上的方法是不是很簡(jiǎn)單,現(xiàn)在很多CMS都是采用這種方法生成靜態(tài)網(wǎng)頁(yè)的,這種方法使用比較靈活,只要你用心去設(shè)計(jì)一下你的系統(tǒng),以后網(wǎng)做一個(gè)網(wǎng)站,只要設(shè)計(jì)模板就可以了。asp生成靜態(tài)網(wǎng)頁(yè)不用模板直接傳參數(shù)讀取asp文件
<%
hps=50
indexmulu="/asp/00/pro"
'''''''''修改這里為本系統(tǒng)所在相對(duì)目錄,以根據(jù)自己的程序修改
'**************************************************************
'函數(shù)名:htmll
'作
用:生成靜態(tài)頁(yè)面
'參
數(shù):htmlmuluHTML模板(asp源文件)存放的目錄
'
FileName生成的HTML文件名(不包括.及擴(kuò)展名)
'
filefrom生成的HTML文件.及擴(kuò)展名
'
ArrName參數(shù)的名稱(chēng)數(shù)組
'
ArrContent對(duì)應(yīng)參數(shù)的內(nèi)容數(shù)組
'**************************************************************
Functionhtmll(mulu,htmlmulu,FileName,filefrom,ArrName,ArrContent)
ifmulu=""thenmulu="/news/"'默認(rèn)生成的HTML文件存放的目錄
ifhtmlmulu=""thenhtmlmulu="/html/"'默認(rèn)HTML模板存放的目錄
mulu=indexmulu&mulu
htmlmulu=indexmulu&htmlmulu
FilePath=Server.MapPath(mulu)&"\"&FileName
Do_Url="http://"
Do_Url=Do_Url&Request.ServerVariables("SERVER_NAME")&htmlmulu&filefrom
ifIsArray(ArrName)then
Do_Url=Do_Url&"?"&ArrName(0)&ArrContent(0)
fori=1toUbound(ArrName)
Do_Url=Do_Url&"&"&ArrName(i)&ArrContent(i)
next
endif
strUrl=Do_Url
setobjXmlHttp=Server.createObject("Microsoft.XMLHTTP")
objXmlHttp.open"GET",strUrl,false
objXmlHttp.send()
binFileData=objXmlHttp.responseBody
SetobjXmlHttp=Nothing
setobjAdoStream=Server.createObject("ADODB.Stream")
objAdoStream.Type=1
objAdoStream.Open()
objAdoStream.Write(binFileData)
objAdoStream.SaveToFileFilePath,2
objAdoStream.Close()
setobjAdoStream=nothing
EndFunction
%>
ASP生成靜態(tài)網(wǎng)頁(yè)的方法
下面的例子是將、index.asp?id=1/index.asp?id=2/index.asp?id=3/這三個(gè)動(dòng)態(tài)頁(yè)面,分別生成index1.htm,index2.htm,index3.htm存在根目錄下面:<%
dimstrUrl,Item_Classid,id,FileName,FilePath,Do_Url,Html_Temp
Html_Temp="<UL>"
Fori=1To3
Html_Temp=Html_Temp&"<LI>"
Item_Classid=i
FileName="Index"&Item_Classid&".htm"
FilePath=Server.MapPath("/")&"\"&FileName
Html_Temp=Html_Temp&FilePath&"</LI>"
Do_Url="http://"
Do_Url=Do_Url&Request.ServerVariables("SERVER_NAME")&"/main/index.asp"
Do_Url=Do_Url&"?Item_Classid="&Item_Classid
strUrl=Do_Url
dimobjXmlHttp
setobjXmlHttp=Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open"GET",strUrl,false
objXmlHttp.send()
DimbinFileData
binFileData=objXmlHttp.responseBody
DimobjAdoStream
setobjAdoStream=Server.CreateObject("ADODB.Stream")
objAdoStream.Type=1
objAdoStream.Open()
objAdoStream.Write(binFileData)
objAdoStream.SaveToFileFilePath,2
objAdoStream.Close()
Next
Html_Temp=Html_Temp&"<UL>"
%>
<%
Response.Write("成功生成文件:")
Response.Write("<BR>")
Response.WriteHtml_Temp
%>非摸板生成靜態(tài)頁(yè)目前已經(jīng)有很多生成html的新聞系統(tǒng),但是都是用的模板,本函數(shù)實(shí)現(xiàn)把a(bǔ)sp頁(yè)面產(chǎn)生的html代碼保存成為一個(gè)html文件,這樣就沒(méi)有必要改動(dòng)原來(lái)的頁(yè)面就可以輕松完成一個(gè)生成html的新聞系統(tǒng)了。^_^
由于代碼比較短,這里就不進(jìn)行注釋了
<%
'當(dāng)目標(biāo)頁(yè)面的包含文件即#include的頁(yè)面里邊存在response.End()的時(shí)候本程序有問(wèn)題
'注意:本文件一定要放在filename指向的文件的同一目錄下
dimhughchiu_rtcode
Functionget_exe_code(filename)
dimexecode
dimtmp_str
Dimre,re1,content,fso,f,aspStart,aspEnd
dimms,m
execode=""
setfso=CreateObject("Scripting.FileSystemObject")
setf=fso.OpenTextFile(server.mappath(filename))
content=f.ReadAll
f.close
setf=nothing
setfso=nothingsetre=newregexp
re.ignorecase=true
re.global=true
re.pattern="\<\%\@[^\%]+\%\>"
content=re.replace(content,"")re.global=false
re.pattern="\<\!\-\-\s*\#include\s*file\s*=\s*\""([^\""]+)\""\s*\-\-\>"
do
setms=re.execute(content)
ifms.count<>0then
setm=ms(0)
tmp_str=get_exe_code(m.submatches(0))
content=re.replace(content,tmp_str)
else
exitdo
endif
loop
setm=nothing
setms=nothingre.pattern="^\s*="
aspEnd=1
aspStart=inStr(aspEnd,content,"<%")+2setre1=newRegExp
re1.ignorecase=true
re1.global=false
re1.pattern="response\.Write(.+)"dowhileaspStart>aspEnd+1
execode=execode&vbcrlf&"hughchiu_rtcode=hughchiu_rtcode&"""&replace(replace(Mid(content,aspEnd,aspStart-aspEnd-2),"""",""""""),vbcrlf,"""&vbcrlf&""")&""""&vbcrlf
aspEnd=inStr(aspStart,content,"%\>")+2
tmp_str=Mid(content,aspStart,aspEnd-aspStart-2)do
setms=re1.execute(tmp_str)
ifms.count<>0then
setm=ms(0)
tmp_str=re1.replace(tmp_str,"hughchiu_rtcode=hughchiu_rtcode&"&m.submatches(0))
else
exitdo
endif
loopsetm=nothing
setms=nothingexecode=execode&re.replace(tmp_str,"hughchiu_rtcode=hughchiu_rtcode&")aspStart=inStr(aspEnd,content,"<%")+2
loopsetre1=nothing
setre=nothingexecode=execode&vbcrlf&"hughchiu_rtcode=hughchiu_rtcode&"""&replace(replace(Mid(content,aspEnd),"""",""""""),vbcrlf,"""&vbcrlf&""")&""""&vbcrlf
get_exe_code="<%"&execode&"%\>"
EndFunctionfunctionasp2html(filename)
dimcode
code=replace(replace(replace(get_exe_code(filename),"hughchiu_rtcode=hughchiu_rtcode&"""""&vbcrlf,""),"<%",""),"%\>","")
'response.Write(code)
execute(code)
'response.Write(hughchiu_rtcode)
asp2html=hughchiu_rtcode
endfunction
%>使用范例:
setfso=CreateObject("Scripting.FileSystemObject")
setf=fso.CreateTextFile(server.mappath("youpage.htm"),true)
f.WriteLine(asp2html("youpage.asp"))
f.close
setf=nothing
setfso=nothing可見(jiàn),雖然是新方法還是需要fso的支持下面代碼可以幫您生成靜態(tài)頁(yè)面,如:list.asp是讀數(shù)據(jù)庫(kù)的頁(yè)面,要生在list.html靜態(tài)頁(yè)面,你的域名是,可以用下面代碼,使用方法:ifSaveFile("/html/list.html","/list.asp")then
Response.write"已生成"
else
Response.write"沒(méi)有生成"
endif如生成失敗,請(qǐng)把代碼OnErrorResumeNext封了,查看具體錯(cuò)誤信息代碼如下:程序代碼
<%
ifSaveFile("/html/list.html","/list.asp")then
Response.write"已生成"
else
Response.write"沒(méi)有生成"
endiffunctionSaveFile(LocalFileName,RemoteFileUrl)
DimAds,Retrieval,GetRemoteData
OnErrorResumeNext
SetRetrieval=Server.CreateObject("Microso"&"ft.XM"&"LHTTP")
WithRetrieval
.Open"Get",RemoteFileUrl,False,"",""
.Send
GetRemoteData=.ResponseBody
EndWith
SetRetrieval=Nothing
SetAds=Server.CreateObject("Ado"&"db.Str"&"eam")
WithAds
.Type=1
.Open
.WriteGetRemoteData
.SaveToFileServer.MapPath(LocalFileName),2
.Cancel()
.Close()
EndWith
SetAds=nothing
iferr<>0then
SaveFile=false
err.clear
else
SaveFile=true
endif
Endfunction
%>ASP生成靜態(tài)網(wǎng)頁(yè)各種方法收集整理
新聞系統(tǒng)、blog系統(tǒng)等都可能用到將動(dòng)態(tài)頁(yè)面生成靜態(tài)頁(yè)面的技巧來(lái)提高頁(yè)面的訪問(wèn)速度,從而減輕服務(wù)器的壓力,本文為大家搜集整理了ASP編程中常用的生成靜態(tài)網(wǎng)頁(yè)的方法,有使用fso的,也有使用到xmlhttp或者Adodb.Stream的。1.使用FSO生成<%
'使用FSO生成
Setfs=CreateObject("Scripting.FileSystemObject")
NewFile=Server.MapPath("ud03/fso.htm")
'新建一文件fso.htm,若該文件已存在,則覆蓋它
Seta=fs.CreateTextFile(NewFile,True)
Response.Write"新文件已建立!"
a.close
File=Server.MapPath("ud03/fso.htm")
Settxt=fs.OpenTextFile(File,8,True)'打開(kāi)成可以在結(jié)尾寫(xiě)入數(shù)據(jù)的文件
data1="這句話(huà)是使用WriteLine方法寫(xiě)入的。!<Br>"
txt.WriteLinedata1
data2="這句話(huà)是使用Write方法寫(xiě)入的。<Br>"
txt.Writedata2
txt.Close
%>2.使用XMLHTTP生成<%
'使用XMLHTTP生成
Setxml=Server.CreateObject("Microsoft.XMLHTTP")
'把下面的地址替換成你的首頁(yè)的文件地址,一定要用http://開(kāi)頭的絕對(duì)路徑,不能寫(xiě)相對(duì)路徑
xml.Open"GET","/ud03/",False
xml.Send
BodyText=xml.ResponseBody
BodyText=BytesToBstr(BodyText,"gb2312")
Setxml=Nothing
Dimfso,MyFile
Setfso=CreateObject("Scripting.FileSystemObject")
SetMyFile=fso.CreateTextFile(server.MapPath("ud03.htm"),True)'生成的html的文件名
MyFile.WriteLine(BodyText)
MyFile.Close'使用Adodb.Stream處理二進(jìn)制數(shù)據(jù)
FunctionBytesToBstr(strBody,CodeBase)
dimobjStream
setobjStream=Server.CreateObject("Adodb.Stream")
objStream.Type=1
objStream.Mode=3
objStream.Open
objStream.WritestrBody
objStream.Position=0
objStream.Type=2
objStream.Charset=CodeBase
BytesToBstr=objStream.ReadText
objStream.Close
setobjStream=nothing
EndFunction
%>3.使用XMLHTTP批量生成<%
'使用XMLHTTP批量生成
dimstrUrl,Item_Classid,id,FileName,FilePath,Do_Url,Html_Temp
Html_Temp="<UL>"
Fori=1To30'需要生成的id:1到30
Html_Temp=Html_Temp&"<LI>"
Item_Classid=i
FileName="Archives_"&Item_Classid&".htm"'生成的html文件名
FilePath=Server.MapPath("/")&"\"&FileName
Html_Temp=Html_Temp&FilePath&"</LI>"
Do_Url="/ud03/index.php"'WEB路徑
Do_Url=Do_Url&"?p="&Item_Classid'WEB路徑之后的ID
strUrl=Do_Url
dimobjXmlHttp
setobjXmlHttp=Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open"GET",strUrl,false
objXmlHttp.send()
DimbinFileData
binFileData=objXmlHttp.responseBody
DimobjAdoStream
setobjAdoStream=Server.CreateObject("ADODB.Stream")
objAdoStream.Type=1
objAdoStream.Open()
objAdoStream.Write(binFileData)
objAdoStream.SaveToFileFilePath,2
objAdoStream.Close()
Next
Html_Temp=Html_Temp&"<UL>"
%>
<%
Response.Write("成功生成文件:")
Response.Write("<BR>")
Response.WriteHtml_Temp
%>4.自動(dòng)按模板生成網(wǎng)站首頁(yè)
<%
Response.Expires=0
Response.expiresabsolute=Now()-1
Response.addHeader"pragma","no-cache"
Response.addHeader"cache-control","private"
Response.CacheControl="no-cache"
Response.Buffer=True
Response.Clear
Server.ScriptTimeOut=999999999
onerrorresumenext
'***************************************************************
'*
定義從模板從讀取首頁(yè)函數(shù)
'*說(shuō)明:模板文件名為:index_Template.asp
'***************************************************************
FunctionGetPage(url)
SetRetrieval=CreateObject("Microsoft.XMLHTTP")
WithRetrieval
.Open"Get",url,False,"",""
.Send
GetPage=BytesToBstr(.ResponseBody)
EndWith
SetRetrieval=Nothing
EndFunction
FunctionBytesToBstr(body)
dimobjstream
setobjstream=Server.CreateObject("adodb.stream")
objstream.Type=1
objstream.Mode=3
objstream.Open
objstream.Writebody
objstream.Position=0
objstream.Type=2
objstream.Charset="GB2312"
BytesToBstr=objstream.ReadText
objstream.Close
setobjstream=nothing
EndFunction'***************************************************************
'*生頁(yè)首頁(yè),文件名為:default.htm
'***************************************************************
dimTstr
Tstr=GetPage("/index_Template.asp")
Setfso=Server.CreateObject("Scripting.FileSystemObject")
Setfout=fso.CreateTextFile(Server.MapPath(".")&"/default.htm")
fout.WriteTstr
fout.close
Response.write"<script>alert(""生成首頁(yè)成功!\n\n文件名為:default.htm"");location.href=";</script"";</script>"
Response.end
%>5.將asp頁(yè)面轉(zhuǎn)換成htm頁(yè)面<%
FunctionGetPage(url)
'獲得文件內(nèi)容
dimRetrieval
SetRetrieval=CreateObject("Microsoft.XMLHTTP")
WithRetrieval
.Open"Get",url,False',"",""
.Send
GetPage=BytesToBstr(.ResponseBody)
EndWith
SetRetrieval=Nothing
EndFunction
FunctionBytesToBstr(body)
dimobjstream
setobjstream=Server.CreateObject("adodb.stream")
objstream.Type=1
objstream.Mode=3
objstream.Open
objstream.Writebody
objstream.Position=0
objstream.Type=2
objstream.Charset="GB2312"
BytesToBstr=objstream.ReadText
objstream.Close
setobjstream=nothing
EndFunction
onerrorresumenext
Url="/""'要讀取的頁(yè)面地址
response.write"開(kāi)始更新首頁(yè)..."
wstr=GetPage(Url)
'response.write(wstr)
Setfs=Server.CreateObject("Scripting.FileSystemObject")
'ifnotMyFile.FolderExists(server.MapPath("/html/"))then
'MyFile.CreateFolder(server.MapPath("/html/"))'
'endif
'要存放的頁(yè)面地址
dizhi=server.MapPath("index.htm")
If(fs.FileExists(dizhi))Then
fs.DeleteFile(dizhi)
EndIf
SetCrFi=fs.CreateTextFile(dizhi)
Crfi.Writeline(wstr)
setCrFi=nothing
setfs=nothing
response.write"...<fontcolor=red>更新完成!</font>"
%>代碼算是最簡(jiǎn)單的,直接保存成一個(gè)asp文件即可,只要把URL(要轉(zhuǎn)化的asp地址)和dizhi(要保存的html地址)設(shè)置好就可以了,一般這兩個(gè)文件在同一個(gè)目錄,才能保證圖片或者css、js起作用。
6.下面是利用XMLHTTP將動(dòng)態(tài)網(wǎng)頁(yè)生成靜態(tài)網(wǎng)頁(yè)的一段簡(jiǎn)單代碼。如一個(gè)正常的index.asp頁(yè)面,并且用ASP代碼調(diào)出數(shù)據(jù)庫(kù)中的內(nèi)容,另建一個(gè)makehtml.asp的頁(yè)面,加入一個(gè)textarea域,假設(shè)為name="body",將index.asp在textarea里調(diào)出來(lái),如:
<textareaname="body"><!--#includefile="index.asp"--></textarea>將這個(gè)textarea包含在表單中,在接收表單頁(yè)用創(chuàng)建FSO對(duì)象,如下生成index.html文件!<%
filename="../index.html"
ifrequest("body")<>""then
setfso=Server.CreateObject("Scriptin
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 基礎(chǔ)沉注漿加固專(zhuān)項(xiàng)施工方案
- 地下一層地上四層學(xué)校建設(shè)項(xiàng)目施工方案
- 鄉(xiāng)村門(mén)口塘護(hù)砌和廣場(chǎng)硬化工程專(zhuān)項(xiàng)施工方案
- 某家具公司庫(kù)存管理優(yōu)化方案(規(guī)則)
- 2025年天津工藝美術(shù)職業(yè)學(xué)院?jiǎn)握新殬I(yè)技能測(cè)試題庫(kù)帶答案解析
- 2026年云南商務(wù)職業(yè)學(xué)院?jiǎn)握新殬I(yè)適應(yīng)性考試題庫(kù)附答案解析
- 2025年湖南理工職業(yè)技術(shù)學(xué)院?jiǎn)握新殬I(yè)技能測(cè)試題庫(kù)附答案解析
- 2025年臨澤縣幼兒園教師招教考試備考題庫(kù)附答案解析(必刷)
- 2025年康平縣招教考試備考題庫(kù)帶答案解析(必刷)
- 2025年長(zhǎng)寧縣幼兒園教師招教考試備考題庫(kù)附答案解析(奪冠)
- 眼科護(hù)理與疼痛管理
- 急性冠脈綜合征再灌注治療
- 2026年中國(guó)聚苯乙烯行業(yè)市場(chǎng)深度分析及發(fā)展前景預(yù)測(cè)報(bào)告
- 43-麥肯錫-美的集團(tuán)績(jī)效管理模塊最佳實(shí)踐分享
- 航空發(fā)動(dòng)機(jī)的熱管理技術(shù)
- 電商平臺(tái)一件代發(fā)合作協(xié)議
- 2025年綜合行政執(zhí)法部門(mén)招聘《職業(yè)能力綜合應(yīng)用能力》模擬試卷及答案
- 學(xué)前奧數(shù)考試題型及答案
- 屋面光伏陽(yáng)光棚施工方案
- 海島型景區(qū)游客環(huán)境責(zé)任行為的影響機(jī)制研究-三亞蜈支洲島景區(qū)為例
- 助貸中介居間合同范本
評(píng)論
0/150
提交評(píng)論