当前位置: 首页 > 图文教程 > 网络编程 > ASP > 用ASP做一个记事本编缉器(附源码)

ASP
asp搜索两个以上的词的原理
如何使用花生壳?
asp汉字转换成汉语拼音代码
asp程序实现伪静态的代码
asp处理xml数据的发送、接收类
ASP中使用jmail发送邮件的函数
asp中获取字符串中的时间字符串
ASP按照字数限制自动截取标题内容
asp中将内容生成word文档的函数
用ASP自动清空IE缓存里的内容
asp检测conn.execute是否执行成功的函数
自动获取当前页面URL的ASP函数
ASP采集中获取网页内所需的html代码
asp图片采集并且本地重命名保存的函数
如何使用asp去字符串中的超链接
asp网站通过限制请求防止被采集的函数
asp利用正则去掉字符串中所有html内容
用ASP取出HTML里面的图片地址的函数
fso实现整个文件夹内容的复制到另一个文件夹中
适合所有表的添加、删除、修改的函数

用ASP做一个记事本编缉器(附源码)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 145 ::
收藏到网摘: n/a

  newDoc.asp
     ----------------------------------------------------------
     <%@ Language=VBScript %>
     <SCRIPT id=DebugDirectives runat=server language=javascript>
     // Set these to true to enable debugging or tracing
     @set @debug=false
     @set @trace=false
     </SCRIPT>
     <HTML>
     <HEAD>
     <META name=VI60_defaultClientScript content=VBScript>
     <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
     
     <SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript>
     <!--
     
     Sub button2_onclick
     fo1.TEXTAREA1.style.fontFamily=select1.value
     End Sub
     
     Sub button3_onclick
     fo1.TEXTAREA1.style.fontSize=select2.value
     End Sub
     
     Sub button4_onclick
     if button4.value="Bold" then
     button4.value="Un Bold"
     fo1.TEXTAREA1.style.fontWeight="Bold"
     else
     button4.value="Bold"
     fo1.TEXTAREA1.style.fontWeight="normal"
     end if
     End Sub
     
     Sub button5_onclick
     if button5.value="Italics" then
     button5.value="Un Italics"
     fo1.TEXTAREA1.style.fontstyle="italic"
     else
     button5.value="Italics"
     fo1.TEXTAREA1.style.fontstyle="normal"
     end if
     End Sub
     Sub button6_onclick
     window.close
     End Sub
     
     -->
     </SCRIPT>
     </HEAD>
     <BODY>
     <FONT face=arial size=3 color=royalblue><B>ASP NOTEPAD</b></font>
     <%dim x
     if Request("type")="save" then
     x = 1
     end if
     %>
     <OBJECT id=OBJECT1 PROGID="Scripting.FileSystemObject" RUNAT="server"></OBJECT>
     <TABLE bgColor=blanchedalmond border=0 cellPadding=1 cellSpacing=1
     width="100%">
     <TR>
     <TD>
     <% if not len(request("doc"))=0 then%>
     <Font face=arial size=2>Document:<B> <%=Request.querystring("doc")%></B></font>
     <%else%>
     <Font face=arial size=2>Document:<B> Untitled</B></font>