濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > 如何制作一個(gè)文本文件編輯器?

如何制作一個(gè)文本文件編輯器?

熱門(mén)標(biāo)簽:遼寧營(yíng)銷智能外呼系統(tǒng)價(jià)格多少 自適應(yīng)地圖標(biāo)注 常州智能外呼電銷機(jī)器人如何 武漢如何辦理400電話 教育機(jī)構(gòu)地圖標(biāo)注 語(yǔ)音電銷機(jī)器人視頻 推銷電話機(jī)器人怎么打電話的 重慶400電話哪里辦理 400電話是怎么申請(qǐng)

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>
撼雪噴云之文本文件編輯器/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>
文檔:B> %=Request.querystring("doc")%>/B>/font>
    %else%>
    Font face=arial size=2>
文檔:B>未命名/B>/font>
    %
    end if%>
    /td>
  /tr>
/TABLE>
P>select id=select1 name=select1 style="HEIGHT: 22px; WIDTH: 25%">
OPTION value='Simsun'>
宋體/option>
OPTION value='Simhei'>
黑體/option>
OPTION value='Simli'>
隸書(shū)/option>
OPTION value='Stxinwei'>
華文新魏/option>
OPTION value='Gpopo3e'>
文鼎中特廣告體/option>
OPTION value='Times New Roman'>Times New Roman/option>
OPTION value='System'>System/option>
/select>nbsp;
  INPUT id=button2 name=button2 type=button value=
字體>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=
字號(hào)>nbsp;
  INPUT id=button4 name=button4 type=button value=
粗體>nbsp;
  INPUT id=button5 name=button5 type=button value=
斜體>nbsp;
  INPUT id=button6 name=button6 type=button value='
關(guān)閉窗口'>BR>BR>
form id=fo1 name=fo1 method=post action=newdoc.asp?type=savech=1doc=%=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="
保存文件" >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 "
,沒(méi)有文件存在!"
end if
end if
%>
/TEXTAREA>
/form>
HR width="100%">
/body>/html>

aspnp.asp
%@ Language=VBScript %>
html>
head>
META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
script ID=clientEventHandlersJS LANGUAGE=javascript>
!--

function submit1_onclick() {
if(frm1.file1.value==null)
window.open("newdoc.asp?doc=" + document.frm1.file1.value);
}

function button2_onclick() {
window.close()
}

function new_onclick() {
window.open("newdoc.asp?doc=");
}

//-->
/script>
/head>
body>
form name=frm1>
P align=left>FONT color=royalblue face=Arial>
撼雪噴云之文本文件編輯器/FONT>/P>
P align=center>

INPUT id=file1 name=file1 type=file CHECKED readOnly style="HEIGHT: 22px; LEFT: 55px; TOP: 16px; WIDTH: 100%">BR>BR>
INPUT id=submit1 name=submit1 type=submit value=
打開(kāi) style="HEIGHT: 24px; WIDTH: 65px" LANGUAGE=javascript onclick="return submit1_onclick()">

INPUT id=new name=new style="HEIGHT: 24px; WIDTH: 64px" type=submit value=新建 LANGUAGE=javascript onclick="return new_onclick()">
INPUT id=button2 name=button2 style="HEIGHT: 24px; WIDTH: 74px" type=button value=
退出 LANGUAGE=javascript onclick="return button2_onclick()">/P>

/form>
/body>/html>

[1]

標(biāo)簽:威海 襄陽(yáng) 朔州 邯鄲 中山 雞西 遵義 柳州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何制作一個(gè)文本文件編輯器?》,本文關(guān)鍵詞  如何,制作,一個(gè),文本,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《如何制作一個(gè)文本文件編輯器?》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于如何制作一個(gè)文本文件編輯器?的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    公主岭市| 正蓝旗| 龙井市| 云南省| 民权县| 滁州市| 陈巴尔虎旗| 天峨县| 三门县| 沁源县| 措勤县| 卫辉市| 临漳县| 南木林县| 吉安县| 临潭县| 文成县| 屯昌县| 志丹县| 宁安市| 奉贤区| 城固县| 连山| 平乡县| 房产| 杭锦旗| 隆尧县| 乌拉特前旗| 东海县| 宁波市| 盱眙县| 麦盖提县| 庆城县| 梅州市| 柳林县| 广河县| 商丘市| 台南县| 乌兰察布市| 衢州市| 丹江口市|