摘要: C# 字符串反转 阅读全文
posted @ 2010-06-30 12:07 Be Myself 阅读(573) 评论(0) 推荐(0) 编辑
摘要: HTTP could not register URL http://+:9999/WCFService/. Your process does not have access rights to this namespace http 不能注册wcf 服务,没有权限访问的解决方法:以管理员方式打开cmd.exe , 执行命令行:netsh http add urlacl url=http://+... 阅读全文
posted @ 2010-03-10 13:07 Be Myself 阅读(634) 评论(0) 推荐(0) 编辑
摘要: CSpider 阅读全文
posted @ 2010-03-02 16:40 Be Myself 阅读(770) 评论(0) 推荐(0) 编辑
摘要: http://bbs.winos.cn/thread-87185-1-1.html http://blog.zol.com.cn/1137/article_1136468.html 阅读全文
posted @ 2010-01-25 22:53 Be Myself 阅读(520) 评论(0) 推荐(0) 编辑
摘要: js 传递参数为 中文, 程序读取中文后为乱码, 解决此问题是需要将该中文进行编码,使用 encodeURI(). 或者通过程序进行相应的编码处理。 阅读全文
posted @ 2009-11-11 14:48 Be Myself 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 题目是这样的, 数组是无序的, 可能没有重复的数,但最多只可能有一个重复的数,要求用最快的方法找到是否有重复的数。乍一想,挺难的,但是其实非常的简单。解决办法:数组a[N],1至N-1这N-1个数存放在a[N]中,其中某个数重复一次。写一个函数,找出被重复的数字。时间复杂度必须为o(N)函数原型:int do_dup(int a[],int N)××××&#... 阅读全文
posted @ 2008-12-23 17:56 Be Myself 阅读(4617) 评论(1) 推荐(0) 编辑
摘要: 看上去似乎任何已知的算法都无法做到,如果谁做到了,那么所有的排序方法:QuickSort,ShellSort,HeapSort,BubbleSort等等等等,都可以扔掉了,还要这些算法干吗阿,呵呵。不过实际上,在数字范围有限制的情况下,是有一个这样的算法的,只需要用一个数组记录每个数字出现次数就可以了。假定你的数字范围在0到65535范围之内,定义一个数组count[65536](这个空间是常量,... 阅读全文
posted @ 2008-12-23 17:50 Be Myself 阅读(3537) 评论(2) 推荐(0) 编辑
摘要: 如上图,解决办法如下 : 按如图所示,将里面的子节点全部勾上,即可 另外,default app pool 选择集成模式 阅读全文
posted @ 2008-12-09 11:21 Be Myself 阅读(11525) 评论(2) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2008-11-10 17:20 Be Myself 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Previously, in MSMQ, WCF and IIS: Getting them to play nice: In Part 1, we built a client and IIS-hosted service application and got them communicating over MSMQ using WCF's NetMsmqBinding. In Part 2,... 阅读全文
posted @ 2008-09-28 17:00 Be Myself 阅读(447) 评论(0) 推荐(0) 编辑