5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:山东
性别:先生
最后登录:2011-01-05
http://xbzg.5d.cn/
专注于Flash+FMS开发...通过Google搜索西部之光Software
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/06/21 | 修改和保存文本
类别(ASP)
|
评论
(2)
|
阅读(419)
|
发表于 08:47
修改TextArea中的文本很简单,不用多说,关键是如何保存并将结果返回到TextArea中。。。
保存按钮:
on(release){
File_name=Text_file_name
trace(File_name)
Content=_parent.contenter.text
trace(Content)
if(Content<>undefined and Text_file_name<>"" and Text_file_name<>undefined){
loadVariables("modify_text.asp","","post")
Modify_confirm._visible=1
Modify_confirm.msg="修改成功,请返回..."
Modify_confirm.Confirm_button.enabled=true
_parent.lyxt.gotoAndStop(1)
}else{
Modify_confirm._visible=1
Modify_confirm.msg="修改失败,请返回..."
}
}
modify_text.asp的内容:
<%
File_name=Request.form("File_name")
CountFile=Server.MapPath(File_name)
SET FileObject=Server.CreateObject("Scripting.FileSystemObject")
Set Out=FileObject.CreateTextFile(CountFile,TRUE,FALSE)
Content=Request.form("Content")
Application.lock
Out.Write(Content)
Application.unlock
out.Close
%>
FLASH中返回文本:
System.useCodepage = true;
contenter.background = true;
contenter.backgroundColor = "0xcccccc";
contenter.fontSize=13
//contenter.textColor = "0x0000000";
contenter.wordWrap = 1;
my_loadvars = new LoadVars();
my_loadvars.load("cgal/sysm.txt");
my_loadvars.onData = function(texter) {
contenter.text =texter
}
0
评论
Comments
日志分类
首页
[186]
Flash
[84]
FMS
[41]
AIR
[2]
ASP
[11]
作品区
[12]
其他
[36]