首页上一页 1 下一页尾页 1 条记录 1/1页
.net编辑器数据无法引用
发表在ASP.NET图书答疑
2009-05-22
是否精华
是
否
版块置顶:
是
否
我在网站上下载了一个WebApp10编辑器,可以运行,但无法获取值,编辑器的说明如下:
一、预览地址:
http://www.global-gyp.com/WebEditor.aspx
二、下载地址:
http://www.global-gyp.com/WebEditor/WebApp10.rar
http://www.wzmm.cc/WebEditor/WebApp10.rar
三、说明:
该编辑器是基于C# asp.net 1.1开发。
可本地上传图片;添加flash、avi影片等;上传图片可设置大小、加水印;水印的颜色、字体、阴影均可设置;
同时还可以在Web.config中定义图片的上传路径。
四、使用:
使用时,把控件文件放到根目录WebEditor文件夹下,然后在需要引用控件的页面头部输入
“<%@ Register TagPrefix="ucl" TagName="editor" Src="WebEditor/editor.ascx" %>”
然后在需要调用的地方输入“<ucl:editor id="WebEditor" runat="server"></ucl:editor>”即可引用控件。
五、读取值:
string getValueStr = ((editor)this.FindControl("WebEditor")).getValue();
如:
private void Button1_Click(object sender, System.EventArgs e)
{
string getValueStr = ((editor)this.FindControl("WebEditor")).getValue();
Response.Write(getValueStr);
}
六、设置初始值:
((editor)this.FindControl("WebEditor")).setValue(Init_str);
如:
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
string Init_str = "欢迎使用 WebEditor 在线编辑器 V1.0";
((editor)this.FindControl("WebEditor")).setValue(Init_str);
}
七、设置:
在Web.config设置编辑器和上传图片路径
<appSettings>
<!--站点网址-->
<add key="SiteUrl" value="http://localhost/WebApp10/"></add>
<!--编辑器文件夹路径-->
<add key="EditorPath" value="http://localhost/WebApp10/webeditor/"></add>
<!--
图片上传文件夹虚拟路径
相对于编辑器文件夹中的“include/”,若要放置于编辑器文件夹中,则为:“上传图片文件夹/”,
若要放置于编辑器文件夹同级,则为:“ ../上传图片文件夹/”,其它类推。
<add key="UpFolder" value="uppic/"></add>
<add key="UpFolderPath" value="http://localhost/WebApp10/webeditor/uppic/"></add>
-->
<add key="UpFolder" value="../upload"></add>
<!--图片上传文件夹绝对路径-->
<add key="UpFolderPath" value="http://localhost/WebApp10/upload/"></add>
</appSettings>
我已经设置过,还是不行,请高手指点,谢谢
一、预览地址:
http://www.global-gyp.com/WebEditor.aspx
二、下载地址:
http://www.global-gyp.com/WebEditor/WebApp10.rar
http://www.wzmm.cc/WebEditor/WebApp10.rar
三、说明:
该编辑器是基于C# asp.net 1.1开发。
可本地上传图片;添加flash、avi影片等;上传图片可设置大小、加水印;水印的颜色、字体、阴影均可设置;
同时还可以在Web.config中定义图片的上传路径。
四、使用:
使用时,把控件文件放到根目录WebEditor文件夹下,然后在需要引用控件的页面头部输入
“<%@ Register TagPrefix="ucl" TagName="editor" Src="WebEditor/editor.ascx" %>”
然后在需要调用的地方输入“<ucl:editor id="WebEditor" runat="server"></ucl:editor>”即可引用控件。
五、读取值:
string getValueStr = ((editor)this.FindControl("WebEditor")).getValue();
如:
private void Button1_Click(object sender, System.EventArgs e)
{
string getValueStr = ((editor)this.FindControl("WebEditor")).getValue();
Response.Write(getValueStr);
}
六、设置初始值:
((editor)this.FindControl("WebEditor")).setValue(Init_str);
如:
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
string Init_str = "欢迎使用 WebEditor 在线编辑器 V1.0";
((editor)this.FindControl("WebEditor")).setValue(Init_str);
}
七、设置:
在Web.config设置编辑器和上传图片路径
<appSettings>
<!--站点网址-->
<add key="SiteUrl" value="http://localhost/WebApp10/"></add>
<!--编辑器文件夹路径-->
<add key="EditorPath" value="http://localhost/WebApp10/webeditor/"></add>
<!--
图片上传文件夹虚拟路径
相对于编辑器文件夹中的“include/”,若要放置于编辑器文件夹中,则为:“上传图片文件夹/”,
若要放置于编辑器文件夹同级,则为:“ ../上传图片文件夹/”,其它类推。
<add key="UpFolder" value="uppic/"></add>
<add key="UpFolderPath" value="http://localhost/WebApp10/webeditor/uppic/"></add>
-->
<add key="UpFolder" value="../upload"></add>
<!--图片上传文件夹绝对路径-->
<add key="UpFolderPath" value="http://localhost/WebApp10/upload/"></add>
</appSettings>
我已经设置过,还是不行,请高手指点,谢谢