⑴ 怎麼在網頁上製作txt文本
第一種方法
<iframe src="1.txt" width="100%" scrolling=NO frameborder=0 height="100%"></iframe>
第二種方法
<%
set fs=server.createobject("scripting.filesystemobject")
file=server.mappath("1.txt")
set txt=fs.opentextfile(file,1,true)
if not txt.atendofstream then
line=txt.ReadAll
response.write line & "<br>"
end if
%>
第三種方法
<%
set fs=server.createobject("scripting.filesystemobject")
file=server.mappath("1.txt")
set txt=fs.opentextfile(file,1,true)
if not txt.atendofstream then
line=txt.ReadAll
end if
function fmtStr()
dim str
str=line
str=replace(str,"&","&")
str=replace(str," ","")
str=replace(str,"<","<")
str=replace(str,">",">")
str=replace(str,"""",""")
str=replace(str,vbcrlf,"<br>")
str=replace(str,"'","''")
fmtstr=str
end function
%>
<span class="STYLE1"><%=fmtstr%></span>
⑵ 怎樣在網頁上添加WORD文檔鏈接
1、首先把想要插入鏈接的Word文檔打開。
⑶ 如何將網頁中的文字添加到新建文件夾中
用IE打開網站,然後點「文件」-「另存為」就能把網站上的東西給保存到新建文件夾了
選中後,在彈出的選項里點復制。在想存的文件夾里點右鍵,在新建里選擇文本文檔,打開該文本文檔,點右鍵選粘貼,就把網頁上選中的部分復制下來了。
⑷ 如何將網頁以文本類型的保存類型保存進文件夾
打開網頁後,按Alt鍵調出菜單欄(僅限於IE瀏覽器),打開「文件」菜單選擇「另存為」,在專彈出的對話框中,選屬擇文檔保存位置,再打開「保存類型」列表選擇「文本文件」,在「文件名」處輸入文件保存的名稱,單擊「保存」,即可將網頁保存為文本文檔(這樣保存可去除網頁中的圖片和格式信息,僅保存網頁中的文字)