摘要:
传统三层架构之ASP.NET 阅读全文
摘要:
Create user friendly date fields with ASP.NET MVC EditorTemplates & jQueryUITags:ASP.NET,ASP.NET MVC,jQuery,jQueryUIApr 18 2011 12:02 PMToday's web sites need to be user friendly, interactive, and responsive. The date field is of particular interest because at this point in time, users prett 阅读全文
摘要:
ASP.NET MVC 3中,正则表达式的验证属性是RegularExpressionAttribute。问题:日期格式进行Server端和Client端的验证解决方案(1):直接使用RegularExpressionAttribute,写正则表达式。[RegularExpression(@"Regular Expression Here", ErrorMessage = "Please input valid date format")] public String RegualarExpressionField { get; set; } 这样做的好 阅读全文
摘要:
项目结构图:DB:set ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONUSE master;GOif exists(select * from sys.databases where name='Test')drop database Test;go-- Create the Test databasecreate database Test;go-- Specify a simple recovery model -- to keep the log growth to a minimum.ALTER DATABASE Test SET RE 阅读全文
摘要:
创建 School 数据库SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOUSE [master];GOIF EXISTS (SELECT * FROM sys.databases WHERE name = 'School')DROP DATABASE School;GO-- Create the School database.CREATE DATABASE School;GO-- Specify a simple recovery model -- to keep the log growth to a minimum.ALTER 阅读全文