




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
ASP生成靜態(tài)網(wǎng)頁的多種方法使用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)'打開成可以在結(jié)尾寫入數(shù)據(jù)的文件
data1="這句話是使用WriteLine方法寫入的。!<Br>"
txt.WriteLinedata1
data2="這句話是使用Write方法寫入的。<Br>"
txt.Writedata2
txt.Close
%>
使用XMLHTTP生成
<%
'使用XMLHTTP生成
Setxml=Server.CreateObject("Microsoft.XMLHTTP")
'把下面的地址替換成你的首頁的文件地址,一定要用http://開頭的絕對(duì)路徑,不能寫相對(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)頁
大家都知道HTML靜態(tài)網(wǎng)頁更容易被搜索引擎收錄索引,動(dòng)態(tài)生成HTML網(wǎng)頁,也可使網(wǎng)站的網(wǎng)頁數(shù)量增多,搜索引擎收錄的數(shù)量也可能多,再加下提高網(wǎng)頁的質(zhì)量也意未著什么呢?我想大家也知道。為了這個(gè),我決定了改變之前網(wǎng)站建設(shè),網(wǎng)頁設(shè)計(jì)的方法,經(jīng)過多翻的研究及思考,對(duì)多種網(wǎng)頁動(dòng)態(tài)生成的方法,我比較喜歡用標(biāo)簽替換的方法成生網(wǎng)頁。標(biāo)簽替換法:這是我個(gè)人理解的定義,不知道別人怎么叫它的,呵呵!標(biāo)簽替換法,就是在設(shè)計(jì)好了的網(wǎng)頁模板中,放入自已設(shè)定的標(biāo)簽,然后用你需要顯示出來的東東替換它。如模板文件1這個(gè)模板我們保存在數(shù)據(jù)庫表中temptable<html>
<head>
<title>{$SiteName}</title>
</head>
<body>
{$Arc_List$}
</body>
<html>
在以上模板中我放入了兩個(gè)標(biāo)簽{$SiteName}網(wǎng)站名稱和{$Arc_List$}文章列表,再來看下面的代碼<%
dimrs,SiteName,Arc_List,fso,myFile,FilePath,html
SiteName="我的第一個(gè)動(dòng)態(tài)生成的HTML網(wǎng)頁"
FilePath=Server.MapPath("/html/index.html")
setrs=server.createobject("adodb.recordset")
rs.open"select[temp]fromtemptable,conn,1,1
html=rs("temp")
'讀取網(wǎng)頁模板
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代碼寫入文件
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)頁的,這種方法使用比較靈活,只要你用心去設(shè)計(jì)一下你的系統(tǒng),以后網(wǎng)做一個(gè)網(wǎng)站,只要設(shè)計(jì)模板就可以了。asp生成靜態(tài)網(wǎng)頁不用模板直接傳參數(shù)讀取asp文件
<%
hps=50
indexmulu="/asp/00/pro"
'''''''''修改這里為本系統(tǒng)所在相對(duì)目錄,以根據(jù)自己的程序修改
'**************************************************************
'函數(shù)名:htmll
'作
用:生成靜態(tài)頁面
'參
數(shù):htmlmuluHTML模板(asp源文件)存放的目錄
'
FileName生成的HTML文件名(不包括.及擴(kuò)展名)
'
filefrom生成的HTML文件.及擴(kuò)展名
'
ArrName參數(shù)的名稱數(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)頁的方法
下面的例子是將、index.asp?id=1/index.asp?id=2/index.asp?id=3/這三個(gè)動(dòng)態(tài)頁面,分別生成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)頁目前已經(jīng)有很多生成html的新聞系統(tǒng),但是都是用的模板,本函數(shù)實(shí)現(xiàn)把a(bǔ)sp頁面產(chǎn)生的html代碼保存成為一個(gè)html文件,這樣就沒有必要改動(dòng)原來的頁面就可以輕松完成一個(gè)生成html的新聞系統(tǒng)了。^_^
由于代碼比較短,這里就不進(jìn)行注釋了
<%
'當(dāng)目標(biāo)頁面的包含文件即#include的頁面里邊存在response.End()的時(shí)候本程序有問題
'注意:本文件一定要放在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可見,雖然是新方法還是需要fso的支持下面代碼可以幫您生成靜態(tài)頁面,如:list.asp是讀數(shù)據(jù)庫的頁面,要生在list.html靜態(tài)頁面,你的域名是,可以用下面代碼,使用方法:ifSaveFile("/html/list.html","/list.asp")then
Response.write"已生成"
else
Response.write"沒有生成"
endif如生成失敗,請(qǐng)把代碼OnErrorResumeNext封了,查看具體錯(cuò)誤信息代碼如下:程序代碼
<%
ifSaveFile("/html/list.html","/list.asp")then
Response.write"已生成"
else
Response.write"沒有生成"
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)頁各種方法收集整理
新聞系統(tǒng)、blog系統(tǒng)等都可能用到將動(dòng)態(tài)頁面生成靜態(tài)頁面的技巧來提高頁面的訪問速度,從而減輕服務(wù)器的壓力,本文為大家搜集整理了ASP編程中常用的生成靜態(tài)網(wǎng)頁的方法,有使用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)'打開成可以在結(jié)尾寫入數(shù)據(jù)的文件
data1="這句話是使用WriteLine方法寫入的。!<Br>"
txt.WriteLinedata1
data2="這句話是使用Write方法寫入的。<Br>"
txt.Writedata2
txt.Close
%>2.使用XMLHTTP生成<%
'使用XMLHTTP生成
Setxml=Server.CreateObject("Microsoft.XMLHTTP")
'把下面的地址替換成你的首頁的文件地址,一定要用http://開頭的絕對(duì)路徑,不能寫相對(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)站首頁
<%
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
'***************************************************************
'*
定義從模板從讀取首頁函數(shù)
'*說明:模板文件名為: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'***************************************************************
'*生頁首頁,文件名為: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(""生成首頁成功!\n\n文件名為:default.htm"");location.href=";</script"";</script>"
Response.end
%>5.將asp頁面轉(zhuǎn)換成htm頁面<%
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="/""'要讀取的頁面地址
response.write"開始更新首頁..."
wstr=GetPage(Url)
'response.write(wstr)
Setfs=Server.CreateObject("Scripting.FileSystemObject")
'ifnotMyFile.FolderExists(server.MapPath("/html/"))then
'MyFile.CreateFolder(server.MapPath("/html/"))'
'endif
'要存放的頁面地址
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)頁生成靜態(tài)網(wǎng)頁的一段簡(jiǎn)單代碼。如一個(gè)正常的index.asp頁面,并且用ASP代碼調(diào)出數(shù)據(jù)庫中的內(nèi)容,另建一個(gè)makehtml.asp的頁面,加入一個(gè)textarea域,假設(shè)為name="body",將index.asp在textarea里調(diào)出來,如:
<textareaname="body"><!--#includefile="index.asp"--></textarea>將這個(gè)textarea包含在表單中,在接收表單頁用創(chuàng)建FSO對(duì)象,如下生成index.html文件!<%
filename="../index.html"
ifrequest("body")<>""then
setfso=Server.CreateObject("Scriptin
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 木材國(guó)際化形象設(shè)計(jì)與品牌創(chuàng)新創(chuàng)業(yè)項(xiàng)目商業(yè)計(jì)劃書
- 老年人社交活動(dòng)創(chuàng)新創(chuàng)業(yè)項(xiàng)目商業(yè)計(jì)劃書
- 寵物功能食品涂層創(chuàng)新創(chuàng)業(yè)項(xiàng)目商業(yè)計(jì)劃書
- DB42T 2406-2025菱角機(jī)械化初加工技術(shù)
- 2025年銀行從業(yè)考試真題及答案解析
- 2025年江西公務(wù)員考試真題及答案解析
- 2025年二級(jí)建造師《水利實(shí)務(wù)》考試真題含答案
- 安全培訓(xùn)師資培訓(xùn)基地課件
- 安全生產(chǎn)證書題庫及答案解析
- 電梯使用單位安全員考核題庫書籍及答案解析
- 2025呼和浩特市總工會(huì)社會(huì)工作者、專職集體協(xié)商指導(dǎo)員招聘29人考試參考題庫及答案解析
- 2025年礦業(yè)權(quán)評(píng)估師考試(礦業(yè)權(quán)評(píng)估地質(zhì)與礦業(yè)工程專業(yè)能力)全真沖刺試題及答案
- 途虎養(yǎng)車加盟協(xié)議合同
- 【公開課】?jī)煞N電荷-2025-2026學(xué)年物理人教版(2024)九年級(jí)全一冊(cè)
- 2024年中國(guó)農(nóng)業(yè)銀行山西省分行招聘真題
- 《人工智能通識(shí)課》全套教學(xué)課件
- 2025年秋招:人力資源專員筆試題庫及答案
- 汽車發(fā)動(dòng)機(jī)課件
- q版人物教學(xué)課件
- 一節(jié)好課的標(biāo)準(zhǔn)簡(jiǎn)短課件
- 2024版2025秋新版小學(xué)道德與法治三年級(jí)上冊(cè)全冊(cè)教案教學(xué)設(shè)計(jì)含反思
評(píng)論
0/150
提交評(píng)論