asp.net(C#)
Atai-Lu
这个作者很懒,什么都没留下…
展开
-
URL重写
Web.Config文件的设置: 主要代码:using System;using System.Diagnostics;using System.Threading;using System.Web;using System.Xml;using System.Text.RegularExpressions;namespace myHttpModule{原创 2008-03-23 15:19:00 · 564 阅读 · 0 评论 -
Lucene无法搜索数字、字母
问题描述:被索引的文本:luxu001207的博客当输入关键词l001或0012时,返回结果为0当输入关键词001207可正确返回结果为什么会出现这种情况呢?因为Lucene对数字、字母的索引是按“单词”的概念来进行索引的,连续的字母、数字、下划线、中横线,Lucene将之当做一个单词进行索引,因此搜索的时候必须输入整个单词才能正确返回结果。原创 2012-10-10 13:03:13 · 735 阅读 · 0 评论 -
新浪微博Oauth2.0登录(二)
Robots、ParseJson请参考《新浪微博Oauth2.0登录(一)》第一步,申请appKey,这里不多说,自己去看新浪的说明即可第二步,引导用户跳转至新浪登录页(请求授权)参考http://open.weibo.com/wiki/Oauth2/authorize的说明string apiKey = "App Key";//申请的App Keystring ap原创 2012-09-27 16:09:29 · 1167 阅读 · 0 评论 -
新浪微博Oauth2.0登录(一)
先贴两个类,一个是解析json的(解析json的网上有很多dll可以直接用,效果都差不多,这里是我自己写的),一个是抓取远程信息的using System;using System.IO;using System.Text;using System.Reflection;using System.Collections;using System.Collections.Gener原创 2012-09-27 15:40:21 · 998 阅读 · 0 评论 -
swfupload 上传中文文件名乱码的解决方式(asp.net)
//碰到这个问题,网上搜了下解决方式,无果,于是自己想办法解决掉了//我的解决方式如下string fname = postfiles[0].FileName;//得到客户端的文件名,这里是乱码try{ byte[] bytes = Encoding.Con原创 2011-09-24 17:48:07 · 582 阅读 · 1 评论 -
从oracle10g将包含clob字段的数据导入oracle 9i
今天从oracle10g将包含clob字段的数据导入oracle 9i中,在网上搜到的方法是说从9i的客户端导出的bmp文件可以直接导入9i的数据库,但试了N次都没成功,最后只好自己动手写代码导,现将主要思路公布:思路:先生成建表的语句,然后自己写代码来实现生成i原创 2011-08-16 17:30:20 · 569 阅读 · 0 评论 -
判断IP所在地址
using System;namespace CcdodoIP{ public class IPInfo { private int _id = 0; private double _StartIPInt = 0; private double _EndIPInt = 0; private stri原创 2009-01-22 23:52:00 · 2626 阅读 · 1 评论 -
asp.net在线压缩、解压缩
using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Web;using Microsoft.Win32;using System.Runtime.InteropServices;using System.Diagnostics;us原创 2009-01-22 23:27:00 · 526 阅读 · 1 评论 -
最近看到好多帖子说网站被注入了,就发点跟这个相关的代码吧
#region 用正则判断是否匹配特定字符 public static bool isMatch(string val, string reg) { if (val == null || val == "") return false; return new R原创 2009-01-22 23:12:00 · 606 阅读 · 0 评论 -
数据导出到excel
using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Data;using System.Data.OleDb;//using Microsoft.Office.Interop.Excel;using Ccdodo.Common;n原创 2009-01-22 23:38:00 · 468 阅读 · 1 评论 -
C#中文分词
using System;using System.IO;using System.Text;using System.Collections;using System.Collections.Generic;using System.Text.RegularExpressions;/* 作者:卢楚风 个人网站:www.ccdodo.com原创 2008-06-29 22:42:00 · 3129 阅读 · 4 评论