今年夏天

随便写写,我的网络生活.

  DonewsBlog  |  Donews首页  |  Donews社区  |  Donews邮箱  |  我的首页  |  联系作者  |  聚合   |  登录
  249篇文章 :: 3篇收藏:: 239篇评论:: 28个Trackbacks

公告

[收藏]365Key|和讯网摘|博采|VIVI|狐摘

Bloglines订阅 Newsgator订阅 My Msn订阅 My Yahoo订阅 Rojo订阅 gougou订阅 周博通订阅 博阅订阅 Rsshow订阅 Google Reader

文章

收藏

相册

技术

相关参考

友情链接

存档


正在读取评论……


2004年11月


Office 2003 Editions: VBA Language References (DOWNLOAD)

轻松进行 Publisher 2003 编程




Asp.net(c#)实现多线程断点续传



一段解决URL漏洞的代码 add some codes in Global.asa'Event Application_BeginRequest  to parse the requestUrl, if not the file requested doesn't exist, return “not found page”

用CodeDom生成代码的一个例子 recently i want to generate codes from database schema with CodeDom, this article helps me. and futhermore, i should know how to generate .aspx pages acutally. it doesn't mention it. some links for reference here:  ( 开始了解一些CodeDom的知识 has  another some links. )
  1. http://www.codeguru.com/
  2. http://www.codegeneration.net/
  3. http://www.codeguru.com/
  4. Code Generator

数据库中的类型和.NET类型的对应关系

ORM演示 this article introduces how to develop projects with ORM tools. including PPT and Demo codes.

Gentle.NET

 TestDriven.NET

Visual SQL Builder

[CodeProject] [newsletter@codeproject.com]

关于refactoring思考

部分微软Tech·Ed 2004大会上提到的网络资源




基于Skype的Web网站Jyve.com问世 Skype provodes some APIs to call its functions, so that it is possible to develop web pages on it, where some colleagues in a team can communicate with each other freely. i think we should keep up with it and IM is on the satage of enterprise-level.



http://blog.csdn.net/hivak47/archive/2004/10/31/161006.aspx

"^\d+$"  //非负整数(正整数 + 0)

"^[0-9]*[1-9][0-9]*$"  //正整数

"^((-\d+)|(0+))$"  //非正整数(负整数 + 0)

"^-[0-9]*[1-9][0-9]*$"  //负整数

"^-?\d+$"    //整数

"^\d+(\.\d+)?$"  //非负浮点数(正浮点数 + 0)

"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$"  //正浮点数

"^((-\d+(\.\d+)?)|(0+(\.0+)?))$"  //非正浮点数(负浮点数 + 0)

"^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"  //负浮点数

"^(-?\d+)(\.\d+)?$"  //浮点数

"^[A-Za-z]+$"  //由26个英文字母组成的字符串

"^[A-Z]+$"  //由26个英文字母的大写组成的字符串

"^[a-z]+$"  //由26个英文字母的小写组成的字符串

"^[A-Za-z0-9]+$"  //由数字和26个英文字母组成的字符串

"^\w+$"  //由数字、26个英文字母或者下划线组成的字符串

"^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$"    //email地址

"^[a-zA-z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?$"  //url