如何用ASP输出HTML文件?

<!--#include file="top.inc"-->
<%
u_title=request.form("u_title")

' 检查标题是否被输入.
if u_title = "" then
%>
<form method="POST" action="<%= request.servervariables("script_name") %>">
 <!--当没有标题输入时显示输入框-->

<p>文件标题<br>
  <input type="text" name="u_title" size="35"></p>
  <p>Font Size<br>
  <select size="1" name="u_text_size">
  <option selected value="1">1</option>
  <option value="2">2</option>
  <option value="3">3</option>
  <option value="4">4</option>
  <option value="5">5</option>
  <option value="6">6</option>
   
  </select></p>
  <p>第1段<br>
  <textarea rows="2" name="u_paragraph1" cols="35"></textarea></p>
  <p>第2段<br>
  <textarea rows="2" name="u_paragraph2" cols="35"></textarea><input type="submit" value="提交" ></p>
</form>
<%
end if
%>

<%
if u_title <> "" then
    u_title=request.form("u_title")
    u_paragraph1=request.form("u_paragraph1")
    u_paragraph2=request.form("u_paragraph2")
    u_text_color=request.form("u_text_color")
    u_text_size=request.form("u_text_size")
    g_filename=replace(u_title," ","_")

' 如果有一个用户输入了标题,则获取所有的用户输入的内容.

set fso = createobject("scripting.filesystemobject")
Set act = fso.CreateTextFile(server.mappath("write2htm/"&g_filename & "-"& month(date())& day(date())& year(date()) &".htm"), true)
' 创建create the text (html) file文件到服务器,并添加mmddyyyy 格式年月日.

' 写所有用户输入的text (html) 文件, .htm 扩展名文件可以很容易地转换成你网站最需要的.asp 或 .inc文件.
    act.WriteLine "<html>"
    act.WriteLine chr(13)
    act.WriteLine "<title>"& u_title &"</title>"
    act.WriteLine chr(13)
    act.WriteLine "<body bgcolor='#FFFFFF'>"
    act.WriteLine chr(13)
    act.WriteLine "<p align='center'><font face='arial' size='"& u_text_size &"'>"
    act.WriteLine chr(13)
    act.WriteLine  u_title &"</p>"
    act.WriteLine chr(13)
    act.WriteLine "<p align='left'><font face='arial' size='"&u_text_size&"'>"
    act.WriteLine chr(13)
    act.WriteLine  u_paragraph1 &"</p>"
    act.WriteLine chr(13)
    act.WriteLine "<p align='left'><font face='arial' size='"& u_text_size &"'>"
    act.WriteLine chr(13)
    act.WriteLine u_paragraph2 &"</p>"
    act.WriteLine chr(13)
    act.WriteLine "<p> </p><p> </p><p> </p>"
    act.WriteLine "<p align='center'><font face='arial' size='"& u_text_size &"'>"
    act.WriteLine "此文件被创建!"
    act.WriteLine  now() &"</p>"
act.Close

' 关闭文件.
%>
您的页面已成功创建!请点击查看.
<a href="write2htm/<%= g_filename &"-"& month(date())& day(date())& year(date())  %>.htm"
target="_blank">查看</a>
<br>
<br>
<% response.write "<html>"
    response.write chr(13)
    response.write "<title>"& u_title &"</title>"
    response.write chr(13)
    response.write "<body bgcolor='#FFFFFF'>"
    response.write chr(13)
    response.write "<p align='center'><font face='arial' size='"& u_text_size &"'>"
    response.write chr(13)
    response.write  u_title &"</p>"
    response.write chr(13)
    response.write "<p align='left'><font face='arial' size='"&u_text_size&"'>"
    response.write chr(13)
    response.write  u_paragraph1 &"</p>"
    response.write chr(13)
    response.write "<p align='left'><font face='arial' size='"& u_text_size &"'>"
    response.write chr(13)
    response.write u_paragraph2 &"</p>"
    response.write chr(13)
    response.write "<p> </p><p> </p><p> </p>"
    response.write "<p align='center'><font face='arial' size='"& u_text_size &"'>"
    response.write "此文件被创建!"
    response.write  now() &"</p>"
end if
%>
<!--#include file="bottom.inc"-->

(0)

相关推荐

  • 如何用ASP输出HTML文件?

    <!--#include file="top.inc"--><%u_title=request.form("u_title") ' 检查标题是否被输入.if u_title = "" then%><form method="POST" action="<%= request.servervariables("script_name") %>"&g

  • 利用ASP输出excel文件实例讲解

    在asp中利用excel的一个方法是将excel文件作为一个数据库进行链接,然后的操作和对access数据库操作类似.但是这个方法不是总能有用的,应为excel不是关系型的数据库.对于一个固定格式,这个格式里有复杂的单元格合并,边框线条样式,还有图案,单元格之间还有公式关系等等的,我想最容易理解的就是在后台打开一个已有设定好模板的文件,然后在需要的地方插入数据,保存,输出... ... 这里提到的这种方法是直接建立一个excel对象,在后台可以更方便的对excel文档进行各种操作. 服务器端还必

  • ASP JSON类文件的使用方法

    而且要使用某个节点的时候要好好的分析,节点的路径一级级的定位.而JSON最大的好处就是,在使用时候可以只需要将数据字符串声明为一个对象,就可以很方便的调用对象中的各成员.也方便在客户端使用Javascript直接调用程序端生成的数据字符串. 使用ASP的人都知道,ASP可以使用两种类型的脚本引擎,那就是VBSCRIPT和JSCRIPT.偶当初学习的时候就根本不知道JSCRIPT,如果知道的话我想我现在就没有必要这么麻烦的将JSON数据使用JSCRIPT转换后,才能在VBSCRIPT中使用.还好两

  • asp导出excel文件最简单方便的方法

    由于excel软件能识别table格式的数据,所以asp只需要输出table格式的html代码,同时设置好contenttype,增加保存为附件的响应头即可将输出的html代码保存为xls文件. asp导出excel文件源代码如下: 复制代码 代码如下: <% Response.ContentType = "application/excel" Response.AddHeader "Content-Disposition", "attachment

  • ASP.NET Core文件上传与下载实例(多种上传方式)

    前言 前段时间项目上线,实在太忙,最近终于开始可以研究研究ASP.NET Core了. 打算写个系列,但是还没想好目录,今天先来一篇,后面在整理吧. ASP.NET Core 2.0 发展到现在,已经很成熟了.下个项目争取使用吧. 正文 1.使用模型绑定上传文件(官方例子) 官方机器翻译的地址:https://docs.microsoft.com/en-us/aspnet/core/mvc/models/file-uploads 这里吐槽一下 - -,这TM的机器翻译..还不如自己看E文的..

  • 如何用Python合并lmdb文件

    由于Caffe使用的存储图像的数据库是lmdb,因此有时候需要对lmdb文件进行操作,本文主要讲解如何用Python合并lmdb文件.没有lmdb支持的,需要用pip命令安装. pip install lmdb 代码及注释如下: # coding=utf-8 # filename: merge_lmdb.py import lmdb # 将两个lmdb文件合并成一个新的lmdb def merge_lmdb(lmdb1, lmdb2, result_lmdb): print 'Merge sta

  • asp.net图片文件的上传与删除方法

    本文实例讲述了asp.net图片文件的上传与删除方法.分享给大家供大家参考,具体如下: //上传图片 public void UpdataImage() { //获取选择的文件 string fileName = fudImage.FileName; //获取后缀名 string fileExt = Path.GetExtension(fileName); if (fileExt != ".jpg") { return; } //获取服务器端得上传的路径 string serverPa

  • 如何用ASP发送html格式的邮件?

    如何用ASP发送html格式的邮件?<% Dim objMail Set objMail = CreateObject("CDONTS.Newmail") objMail.TO = "sunchunliang@263.net" objMail.From =shenzhaoyang@intels.net objmail.Subject = "闪亮日子之html撼雪喷云" objMail.MailFormat = cdoMailFormatMi

  • 如何用ASP发送带附件的邮件?

    如何用ASP发送带附件的邮件?<% Option Explicit Dim objMail Set objMail = Server.CreateObject("CDONTS.NewMail") objMail.From = "liyanbing@163.net " objMail.Subject = "闪亮日子之星河影动" objMail.AttachFile("s:\flashdays\images\win.jpg"

  • 在vs2010中,输出当前文件路径与源文件当前行号的解决方法

    看到一道题目:vs2010中,如何输出当前文件路径和源文件当前行号.不知道,于是立刻上网搜,于是找到了答案:总结一下,有用的时候就直接拿来用了,据说它们是系统预定义宏,但这种宏并不是在某个文件中定义的,而是由编译器定义的. 复制代码 代码如下: cout << __LINE__ << endl;  //输出语句所在的行号 cout << __FILE__  << endl; //输出文件名(包括路径) cout << __TIME__ <&

随机推荐