vs2005网站发布大全
要点:
- Microsoft Visual Studio 2005 Web Deployment Projects下载安装
- 安装类Installer大概描述
- 安装过程中,通过WebServices验证序列号(License)
- 安装数据库(不使用osql.exe)
- 设置DCom组件的权限
- 设置网站文件夹的权限
- 安装日志
posted @ 2007-07-03 15:10 墨尔 阅读(148) 评论(0) 编辑
.Net编程,关注程序,关注生活.
要点:
posted @ 2007-07-03 15:10 墨尔 阅读(148) 评论(0) 编辑
String.prototype.trim = function(){ return this.replace(/(^[\s]*)|([\s]*$)/g, "");
String.prototype.ltrim = function(){ return this.replace(/(^[\\s]*)/g, ""); }
String.prototype.rtime = function(){ return this.replace(/([\\s]*$)/g, ""); }
String.prototype.realLength = function(){ return this.replace(/[^\\x00-\\xff]/g,"**").length; }//计算字符串的长度,一个汉字两个字符
//功能:检测是否为空或NULL值
String.prototype.isNullOrEmpty = function() { return this.trim().realLength() < 1 ? true : false; }
String.prototype.toLower = function() { return this.toLowerCase(); }
String.prototype.toUpper = function() { return this.toUpperCase(); }
posted @ 2007-07-03 14:29 墨尔 阅读(118) 评论(0) 编辑