会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
静心
博客园
首页
新随笔
新文章
联系
订阅
管理
2010年5月25日
Lucene.Net学习
摘要: http://www.cnblogs.com/birdshover/archive/2008/08/26/1277103.html http://www.cnblogs.com/focustea/archive/2009/07/07/1518484.html
阅读全文
posted @ 2010-05-25 14:00 冷火
阅读(227)
评论(0)
推荐(0)
编辑
2010年4月2日
Argotic Syndication Framework生成RSS
摘要: 如果在当前页输出可以用如下代码: Response.ContentType = "application/rss+xml"; SyndicationResourceSaveSettings settings = new SyndicationResourceSaveSettings(); settings.CharacterEncoding = new UTF8Encoding(false); f...
阅读全文
posted @ 2010-04-02 09:57 冷火
阅读(458)
评论(0)
推荐(0)
编辑
2010年2月9日
Confirm GridView Deletes with the ModalPopupExtender
摘要: I was looking for good examples of how the ModalPopupExtender control could be used as a confirmation dialog. I was especially curious in seeing implementations where the popup is used to confirm del...
阅读全文
posted @ 2010-02-09 09:14 冷火
阅读(423)
评论(0)
推荐(0)
编辑
2010年1月6日
如何在C#中实现图片缩放
摘要: //************************************************************////下面给出三个简单的方法,后面两个方法是扩展,估计有时用得着//************************************************************///// <summary>/// 缩小图片/// </summa...
阅读全文
posted @ 2010-01-06 14:43 冷火
阅读(740)
评论(1)
推荐(0)
编辑
2009年12月4日
[ASP.NET] 限制上传文件类型的两种方法
摘要: 通常,为了防止因用户上传有害文件(如木马、黑客程序)引发的安全性问题,Web程序都会对用户允许上传的文件类型加以限制。而本文将要介绍的就是如何在ASP.NET应用程序中利用Web Control的内置属性简单高效地实现限制上传文件类型的功能。 在调用PostFile对象的SaveAs方法保存上传文件之前,可以通过PostFile对象的FileName属性得到上传的文件名。而有了上传的文件名,就...
阅读全文
posted @ 2009-12-04 14:11 冷火
阅读(1402)
评论(0)
推荐(0)
编辑
2009年8月6日
asp.net采集
摘要: 采集取得页面HTML代码的例子上面已经给出不少了 下面的代码是使用正则表达式取得HTML中内容的代码 Regex regex1 = new Regex(this.NameKey, RegexOptions.Singleline | RegexOptions.IgnoreCase ); MatchCollection collection1 = regex1.Matches(t...
阅读全文
posted @ 2009-08-06 09:50 冷火
阅读(461)
评论(0)
推荐(0)
编辑
2009年7月14日
在C#怎用一条正则表达式验证用逗号隔开的email地址
摘要: 比喻输入email地址为 aa@bb.com,bb@dd.com,vvv@cn.com, 最后有逗号也允许? //不允许^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*(,\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)*$//允许^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\...
阅读全文
posted @ 2009-07-14 16:21 冷火
阅读(1354)
评论(0)
推荐(0)
编辑
2009年7月6日
关于LumiSoft.Net.POP3.Client接收邮件例子(包括附件)
摘要: LumiSoftReceive.aspx.csusing System;using System.Collections.Generic;using System.Data;using System.IO;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using Lumi...
阅读全文
posted @ 2009-07-06 14:49 冷火
阅读(5252)
评论(22)
推荐(0)
编辑
2009年6月29日
dhtmlXTreeprofessional
摘要: /Files/xiongeee/dhtmlXTreeprofessionalv1.3.rar
阅读全文
posted @ 2009-06-29 10:54 冷火
阅读(185)
评论(0)
推荐(0)
编辑
2009年6月22日
asp.net导出xml文件
摘要: protected void Button1_Click(object sender, EventArgs e) { Random random=new Random(); int rnumber=random.Next(1, 100); string outPutName = DateTime.Now.ToString("yyyyMMddhhmmss") + rnumber.ToString()...
阅读全文
posted @ 2009-06-22 14:48 冷火
阅读(986)
评论(0)
推荐(0)
编辑
下一页