只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2010-12-02 18:02 乄蛇~ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: "^\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 @ 2010-12-01 11:25 乄蛇~ 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 一、connectionStrings>和<appSettings>的区别 /* *连接数据库的书写方式不同。 */1.<connectionStrings> <connectionStrings> <add name="SYXTConnectionString" connectionString="Data Source=LEIKE;Initial... 阅读全文
posted @ 2010-12-01 11:11 乄蛇~ 阅读(474) 评论(1) 推荐(0) 编辑