ms_dos

  博客园  :: 首页  :: 新随笔  ::  :: 订阅 订阅  :: 管理

2007年5月7日

摘要: "^\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]... 阅读全文
posted @ 2007-05-07 20:16 ms_dos 阅读(236) 评论(0) 推荐(0) 编辑

摘要: 本文将介绍如何利用ASP.NET进行邮件的发送,包括三种类型:发送简单的文件,发送包含HTML格式的文件和发送包含附件的邮件。 IntroductionIn this article we will explore three different and important e-mailing techniques; to send a simple text e-mail, to send HT... 阅读全文
posted @ 2007-05-07 18:32 ms_dos 阅读(1079) 评论(0) 推荐(0) 编辑

摘要: 一次上传多个文件本文Haissam Abdul Malak介绍了如何一次上传多个文件 Introduction [ Back To Top ] I'm sure that you have seen a l... 阅读全文
posted @ 2007-05-07 18:31 ms_dos 阅读(671) 评论(0) 推荐(0) 编辑

摘要: 获取服务器的IP地址方法以DNS法较为简单实用,如下:private void ButtonIP_Click(object sender, System.EventArgs e) { System.Net.IPAddress[] addressList = Dns.GetHostByName(Dns.GetHostName()).AddressList; if ( addressList.... 阅读全文
posted @ 2007-05-07 18:15 ms_dos 阅读(758) 评论(1) 推荐(0) 编辑