几款ASP.NET在线文本编辑器
几款ASP.NET在线文本编辑器
1,FCKeditor 编辑器
最新版本: 2.3.1
站点:http://www.fckeditor.net
演示:http://www.fckeditor.net /demo
特点:开源、免费 支持绝大多数浏览器
支持语言多
ASP.Net * ASP * ColdFusion * PHP * Java * Active-FoxPro * Lasso * Perl * Python
2,eWebEditor在线编辑器
最新版本:4.0
站点:http://www.ewebsoft.com/
演示:http://ewebeditor.webasp.net/demo.asp
特点:国产、易用
3,InnovaStudio WYSIWYG Editor在线编辑器
注:WYSIWYG是What You See Is What You Get(所见即所得)首字母组合
支持ASP/PHP/ASP.NET2.0
支持12国语言,
支持IE/FF/MOZ
最新版本:2.9.7
站点:http://www.innovastudio.com/editor.asp
演示: http://www.innovastudio.com/editor_tutorial.asp
特点: 物有所值
4,Tinymce在线编辑器
最新版本:2.0.6.1
站点:http://tinymce.moxiecode.com
演示:http://tinymce.moxiecode.com /example_full.php?example=true
有关如上4款在线编辑器的测试比较,经典论坛有份帖子,可以参阅下:
http://bbs.blueidea.com/viewthread.php?tid=2621172
5,XStandard
最新版本:1.7.1
站点:http://xstandard.com/
特点:支持XHTML+CSS
说明:XStandard Lite免费,XStandard Pro30天试用
6,Free TextBox在线编辑器
最新版本:3.1.6
http://freetextbox.com/
http://freetextbox.com/demos/
7, Cute Editer
http://cutesoft.net/asp/EnableAll.asp
开发案例:DW版在线编辑器
演示:http://www.nlimi.com/ud/dreampower.htm
下载:http://www.nlimi.com/ud/dreampower.rar
相关文档:
应用1:GridView和CheckBox结合
效果图:
应用2:Extending the GridView Control
Code download available at: CuttingEdge05.exe (132 KB)
Browse the Code Online
Contents
The GridView Difference
A New GridView Control
Adding a Checkbox Column
The New Grid In Action
Styling Selected ......
模态窗口每次页面重新打开不刷新。
缓存的原因,改成这样:
解决办法。。。
url = frmWin + "? " + Math.random();
window.showModalDialog(url,me, 'dialogWidth= '+width + 'px;dialogHeight= '+height+ 'px;help:no;status:no;resizable:no;scro ll:no; ......
1. 打开新的窗口并传送参数:
传送参数:
response.write("<script>window.open
('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="++"')</script>")
接收参数:
string a = Request.QueryString("id");
string b = Request.QueryString("id1");
2.为按钮添加对话框
Button1.Attributes.Add("o ......
在.Net 4.0之前我们为了做出搜索引擎友好的,对用户也友好的url都是需要自己实现Url重写,现在不需要了,.Net 4.0为我们做这一切。UrlRouting之所以称之为Routing是因为它不但实现了Url重写还可以通过参数得到重写后的Url在页面上使用。
1. Url Routing 的通常用法
UrlRouting在Asp.Net Mvc项目中被广泛使用,在Mvc中很好 ......
这个东西太纠结了~贴出来代码,供大家享用
分三个部分:.config .aspx .aspx.cs
//web.config
<appSettings>
<add key="keystring" value="Data Source=ZRQ-PC;Initial Catalog=OnlineJudge;Integrated Security=True"/>
</appSettings>
......