2014年10月28日
摘要: 不要用视图,先分页查找出主表字段,将主表的字段查出后在 进行子查询,主表创建索引 阅读全文
posted @ 2014-10-28 17:05 雪原日暮 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 当点击提交按钮后,想在Controll里取到Form里的数据。必须在控件上设置name属性 例如,在controll的Action里接收如下 public ActionResult Login(FormCollection form) { string userid=form["userID"]; ... 阅读全文
posted @ 2014-10-28 16:51 雪原日暮 阅读(108) 评论(0) 推荐(0) 编辑
摘要: mvc Action上面加[HttpPost] 意思就是这个action只能响应post请求. 如果发get请求这里是没有响应的 阅读全文
posted @ 2014-10-28 16:19 雪原日暮 阅读(226) 评论(0) 推荐(0) 编辑
  2014年10月27日
摘要: 在存储过程中select * from xxselect * from ddreturn这样的写法 在存储过程中会返回两个table 在后台获取即可 阅读全文
posted @ 2014-10-27 16:07 雪原日暮 阅读(105) 评论(0) 推荐(0) 编辑
摘要: --统计set @collSql='select sum(case Ca_IssueType when 0 then 1 else 0 end) as IssueCount,sum(case when Ca_IssueType>0 then 1 else 0 end) as ReIssueCount... 阅读全文
posted @ 2014-10-27 14:09 雪原日暮 阅读(269) 评论(0) 推荐(0) 编辑
摘要: drop table tableName_a select * into tableName_a from 这里无需定义临时表 直接创建 用完还有删除 阅读全文
posted @ 2014-10-27 09:03 雪原日暮 阅读(105) 评论(0) 推荐(0) 编辑
  2014年10月14日
摘要: <a href="#" 阅读全文
posted @ 2014-10-14 10:58 雪原日暮 阅读(365) 评论(0) 推荐(0) 编辑
  2014年10月9日
摘要: Dictionary dic1 = new Dictionary(); dic1.Add("ddd","123"); dic1.Add("aaa", "123"); dic1.Add("ccc", "123"); dic1.Add("fff", "123");... 阅读全文
posted @ 2014-10-09 15:36 雪原日暮 阅读(176) 评论(0) 推荐(0) 编辑
  2014年9月26日
摘要: set @Sql_Sql = N' select top 1 @m_zw=zw,@m_zh=temp from ket where zd=''ddd'' ' print @Sql_Sql EXEC sp_executesql... 阅读全文
posted @ 2014-09-26 16:45 雪原日暮 阅读(320) 评论(0) 推荐(0) 编辑
摘要: set @InsertStr='INSERT INTO [dbo].[T_SchoolPercentMonth]([SchoolID],[MonthOfYear],[PercentNum]) VALUES('''+cast(@SchoolID as nvarchar)+''','''+conver... 阅读全文
posted @ 2014-09-26 15:04 雪原日暮 阅读(524) 评论(0) 推荐(0) 编辑