welcome to Qijie's Blog 薛其杰
摘要: 在网上看到一篇关于判断字符串是数字的函数, 感觉思路不错, 代码简洁, 我转载一下:代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--publicstaticboolisnum(stringxtext)//判断字符串是不是数字{boolflag=f... 阅读全文
posted @ 2010-01-06 11:05 零点零一 阅读(541) 评论(2) 推荐(0)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--FunctionGetInt(ByValinputAsString)AsIntegerDimregAsRegex=NewRegex("^\d+$")IfNotreg.IsMatch(input)The... 阅读全文
posted @ 2010-01-06 10:02 零点零一 阅读(377) 评论(0) 推荐(1)
摘要: Scenario is like this, if you developed a web application in your own computer. It runs well in your Dev box, and now you want to let it hosted in your work place server. So you should copy your appli... 阅读全文
posted @ 2010-01-05 11:16 零点零一 阅读(272) 评论(0) 推荐(0)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1///<summary>2///NewFeaturein.NET4.03///Comparetwoarray4///usingIStructuralEquatable5///usingE... 阅读全文
posted @ 2010-01-04 18:01 零点零一 阅读(389) 评论(0) 推荐(0)
摘要: In a WAP we usually have a Project file, User file, Bin folder, Obj folder, ASP.NET pages, User Contorls, WCF and Web Services etc. ASP.NET pages and other similar files have two additional artifacts ... 阅读全文
posted @ 2010-01-04 15:23 零点零一 阅读(303) 评论(0) 推荐(0)
摘要: good article about creating a Web Package from Joshi.view article... 阅读全文
posted @ 2010-01-04 13:32 零点零一 阅读(157) 评论(0) 推荐(0)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1///themostimportantthingistoreferencetheMediaPlayerinCOMTab2///qixue3usingSystem;4usingSystem.Colle... 阅读全文
posted @ 2009-12-23 17:20 零点零一 阅读(473) 评论(0) 推荐(0)
摘要: 首先回到ASP.NET 1.1的“远古时代”,看看ASP.NET引擎是如何处理页面文件和Code-Behind文件的。我们在页面文件的上方通常会看到这样一句声明:<%@ Page CodeBehind="Default.aspx.cs" Inherits="WebApplication1.CDefault" %>当我们在页面文件上加入一个新的ASP.NET控件时... 阅读全文
posted @ 2009-11-30 22:26 零点零一 阅读(289) 评论(0) 推荐(0)
摘要: 今天同事做培训讲到了线程同步的方法, 其中一个就是用到Semaphore。 Semaphore可以用在不同进程之间的线程同步, 若是在单进程中的线程同步, 使用lock或是Monitor就足够了。 正如其名 旗语就是存在多个任务, 每个任务上都插一个小旗作为互斥信号, 当有一个线程去访问该任务时, 就拔掉小旗 以示其他线程不能访问, 访问完成后再插回小旗使其他线程可以访问。Demo:代码Code ... 阅读全文
posted @ 2009-11-28 11:17 零点零一 阅读(592) 评论(0) 推荐(0)
摘要: FrontPage Source ControlIntroductionThe normal method of using source control for Visual Studio is that once you have a project or solution that you want controlled, you go to File > Source Control... 阅读全文
posted @ 2009-11-24 15:44 零点零一 阅读(312) 评论(0) 推荐(0)