摘要:
ASP.NET 2.0 – 如何巢状化GridView控件
也就是说在GridView控件中再内含另外一个GridView控件。 阅读全文
摘要:
模板站http://www.mbzhan.com/ 阅读全文
摘要:
RequiredFieldValidator(必须字段验证) 用于检查是否有输入值
CompareValidator(比较验证) 按设定比较两个输入
RangeValidator(范围验证) 输入是否在指定范围
RegularExpressionValidator(正则表达式验证) 正则表达式验证控件
CustomValidator(自定义验证) 自定义验证控件
ValidationSummary(验证总结) 总结验证结果 阅读全文
摘要:
JavaScript 处理字符串函数
concat() indexOf() charAT() lastIndexOf() match() substring() replace() search() slice() split() split() length() toLowerCase() toUpperCase()
注意: concat 、 match 、 replace 和 search 函数是在 JavaScript 1.2 中加入的。所有其它函数在 JavaScript 1.0 就已经提供了。 阅读全文
摘要:
function String.prototype.Trim() {return this.replace(/(^\s*)|(\s*$)/g,"");} //去掉前后空格
function String.prototype.Ltrim(){return this.replace(/(^\s*)/g, "");} //去掉左空格
function String.prototype.Rtrim(){return this.replace(/(\s*$)/g, "");} //去掉右空格 阅读全文
摘要:
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g,"");
} 阅读全文