⑴ 怎么在网页上制作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浏览器),打开“文件”菜单选择“另存为”,在专弹出的对话框中,选属择文档保存位置,再打开“保存类型”列表选择“文本文件”,在“文件名”处输入文件保存的名称,单击“保存”,即可将网页保存为文本文档(这样保存可去除网页中的图片和格式信息,仅保存网页中的文字)