使用FCKeditor2.2图片上传的小技巧
摘要: FCKeditor的确是个错的编辑器,从ASP.NET 1.1就开始在用。之前没做过图片上传,最近要做个产品发布的小东西,使用ASP.NET2.0的文件上传组件老是出问题。考虑到FCKeditor中的图片上传功能不错,而且有浏览服务器文件的功能,所以就直接拿来用了。下面实现了不修改FCKeditor本身的任何代码,对FCKeditor的文件浏览器加以利用。首先,放一个TextBox和Button。...
阅读全文
posted @
2007-07-25 19:02 RedSoft 阅读(454) |
评论 (0) 编辑
FCKeditor 2.2 + Asp.Net 设置
摘要: FCKeditor相关资料简介:官方网站http://www.fckeditor.net/官方文档http://wiki.fckeditor.net/下载地址http://www.fckeditor.net/download/default.html官方演示http://www.fckeditor.net/demo/default.html针对于ASP.NET开发者来说,你有两种选择:1. 只使用...
阅读全文
posted @
2007-07-25 18:57 RedSoft 阅读(274) |
评论 (0) 编辑
asp.net 返回上一页的实现方法小集
摘要: 返回上一页的这个东东在我们做项目的时候一般是用于填写完表单后确认的时候,有对原来输入的数据进行修改时用的,或者是因为网站为了方便浏览者而有心添加的一个东东,一般这种功能的实现在ASP.net中都是用一个button的控件来实现的,实现的方法有很多,今天恰好在做项目时碰到要用这个东东,我就把能实现"返回上一页","返回前一页"的几种方法总结了一下,供大家学习之用,请多多指教:0)其实要实现这个功能主...
阅读全文
posted @
2007-07-14 17:21 RedSoft 阅读(8672) |
评论 (0) 编辑
在ASP.NET里轻松实现缩略图
摘要: 以前,在页面上实现缩略图必须借助第三方组件。现在,有了.NET,就可以很轻松地实现缩略图。下面就是实现缩略图的例子。代码如下:Thumbnail.aspx 在ASP.NET里轻松实现缩略图 后台:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawi...
阅读全文
posted @
2007-07-14 00:21 RedSoft 阅读(149) |
评论 (0) 编辑
C#精髓 GridView 72般绝技(转自:清清月儿)
摘要: 快速预览:GridView无代码分页排序GridView选中,编辑,取消,删除GridView正反双向排序GridView和下拉菜单DropDownList结合GridView和CheckBox结合鼠标移到GridView某一行时改变该行的背景色方法一鼠标移到GridView某一行时改变该行的背景色方法二GridView实现删除时弹出确认对话框GridView实现自动编号GridView实现自定义...
阅读全文
posted @
2007-07-06 02:04 RedSoft 阅读(236) |
评论 (0) 编辑
C#的四种排序算法
摘要: 本文介绍了C#的四种排序算法:冒泡排序、选择排序、插入排序和希尔排序 冒泡排序using System;namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1; while((j<list.Length)&...
阅读全文
posted @
2007-07-06 01:59 RedSoft 阅读(80) |
评论 (0) 编辑
Ajax实现无刷新树
摘要: 1.建立一个aspx页面html代码<htmlxmlns="http://www.w3.org/1999/xhtml"><headid="Head1"runat="server"><title>小山</title><linktype="text/css"href="../../Styles/tree_css/tree.css"rel="styl...
阅读全文
posted @
2007-07-05 00:16 RedSoft 阅读(170) |
评论 (0) 编辑