| 网站首页 | 硬件维修 | 应用学院 | 网络组建 | 网站制作 | 菜鸟黑客 | 编程之道 | 数码大全 | 娱乐休闲 | 软件下载 | 在线视频 | 请您留言 | 技术论坛 | 
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
  • javascript模拟游戏中的…

  • javascript制作闪烁的边…

  • javascript制作浮动的工…

  • javascript设计漫天雪花

  • javascript设计网页中的…

  • 用javascript实现利用FL…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • Q
    您现在的位置: 我是IT人 >> 网站制作 >> ASP >> 文章正文
    用ASP做一个记事本编缉器         
    用ASP做一个记事本编缉器
    作者:网络 文章来源:转载 点击数: 更新时间:2005-9-30
    [ 字体:缩小 正常 放大 | 双击自动滚屏 ]
    请选择合适的字体颜色:


    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>
    <%
    end if%>
    </TD>
    </TR>
    </TABLE>
    <P><SELECT id=select1 name=select1 style="HEIGHT: 22px; WIDTH: 25%">
    <OPTION value='Times New Roman'>Times New Roman</option>
    <OPTION value='System'>System</option>
    <OPTION value='Arial'>Arial</option>
    <OPTION value='Comic Sans MS'>Comic Sans MS</option>
    <OPTION value='Courier'>Courier</option>
    <OPTION value='Courier New'>Courier New</option>
    <OPTION value='Verdana'>Verdana</option>
    </SELECT>&nbsp;
    <INPUT id=button2 name=button2 type=button value=Font>&nbsp;
    <SELECT id=select2 name=select2 style="HEIGHT: 22px; WIDTH: 60px">
    <option value=8pt>8pt</option>
    <option value=9pt>9pt</option>
    <option value=10pt selected>10pt</option>
    <%for a=11 to 100%>
    <option value='<%=a%>pt'><%=a%>pt</option>
    <%next
    %>
    </SELECT>&nbsp;
    <INPUT id=button3 name=button3 type=button value=Size>&nbsp;
    <INPUT id=button4 name=button4 type=button value=Bold>&nbsp;
    <INPUT id=button5 name=button5 type=button value=Italics>&nbsp;
    <INPUT id=button6 name=button6 type=button value='Close Window'><BR><BR>
    <font face=arial size=1>You will not be questioned on saving the changes</P></font>
    <form id=fo1 name=fo1 method=post action=newdoc.asp?type=save&ch=1&doc=<%=Request.QueryString("doc")%>>
    <INPUT id=text1 name=text1 style="HEIGHT: 24px; WIDTH: 80%" value=<%=Request.querystring("doc")%>>&nbsp;
    <INPUT id=button1 name=button1 style="HEIGHT: 24px; WIDTH: 15%" type=submit value="Save File" >&nbsp;
    <hr width="100%">
    <BR>
    <TEXTAREA id=TEXTAREA1 name=TEXTAREA1 style="FONT-family: arial; FONT-SIZE: 10pt; HEIGHT: 50%; WIDTH:
    100%"><%if request("ch")=1 then
    Response.Write request("textarea1")
    end if
    if len(request("text1"))>0 then
    if OBJECT1.FileExists(Request("text")) then
    OBJECT1.OpenTextFile(request("doc")).Write request("textarea1")
    else
    OBJECT1.CreateTextFile (request("text1"),true).Write Request("textarea1")
    end if
    end if
    if not Request.QueryString("doc")="" and not Request("ch")=1 then
    if OBJECT1.FileExists(Request.QueryString("doc")) then
    Response.Write OBJECT1.OpenTextFile(Request.QueryString("doc")).ReadAll
    else
    Response.Write "<????> No document Exists <????>"
    end if
    end if
    %>
    </TEXTAREA>
    </form>
    <HR width="100%">

    [1] [2] [3] [4] 下一页  

    文章录入:小秦    责任编辑:小秦 
  • 上一篇文章:

  • 下一篇文章:
  • 发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    | 设为首页 | 加入收藏 | 联系站长 | 关于我们 | 友情链接 | 版权申明 |