上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 49 下一页
摘要: SELECT *FROM ( SELECT KNOWLEDGE_OID, ROW_NUMBER() OVER ( PARTITION BY KNOWLEDGE_OID ORDER BY LATEST_SCORE DESC ) rid FROM T_REPORT_SCORE ) AS tWHERE r... 阅读全文
posted @ 2015-08-20 16:46 ChineseMoonGod 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Response.Write(this.GetType() + ""); Response.Write(this.GetType().Assembly.Location + ""); Response.Write(this.GetType().BaseT... 阅读全文
posted @ 2015-08-19 21:12 ChineseMoonGod 阅读(200) 评论(0) 推荐(0) 编辑
摘要: CREATE function [dbo].[split](@aString varchar(8000),@pattern varchar(10))returns @temp table([Sid] [int] IDENTITY (1, 1) NOT NULL ,a varchar(100))--... 阅读全文
posted @ 2015-08-14 17:34 ChineseMoonGod 阅读(419) 评论(0) 推荐(0) 编辑
摘要: ScriptManager.RegisterStartupScript方法如果页面中不用Ajax,cs中运行某段js代码方式可以是: Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "");如果页面中使用了Ajax ,则上述代码... 阅读全文
posted @ 2015-08-14 15:48 ChineseMoonGod 阅读(2625) 评论(0) 推荐(0) 编辑
摘要: 1.function ajax(url, onsuccess){ var xmlhttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP'); //创建XMLHTTP对象... 阅读全文
posted @ 2015-08-13 20:36 ChineseMoonGod 阅读(313) 评论(0) 推荐(0) 编辑
摘要: VS2010中打开VS2013/VS2012项目 (2014-04-03 23:47:53)转载▼分类:ITVS低版本打开高版本创建的项目时会提示"选择的文件是解决方案文件,但是用此应用程序的较新版本创建的,无法打开"解决办法:写字板打开解决方案sln文件将其改成当前使用的VS版本即可vs2010改... 阅读全文
posted @ 2015-08-09 09:46 ChineseMoonGod 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-08-08 15:31 ChineseMoonGod 阅读(369) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2015-07-31 17:39 ChineseMoonGod 阅读(148) 评论(0) 推荐(0) 编辑
摘要: create procedure proc_page_withtopmax(@pageIndex int,--页索引@pageSize int,--每页显示数@pageCount int output,--总页数,输出参数 @totalCount int output--总条数)asbeginset... 阅读全文
posted @ 2015-07-21 10:41 ChineseMoonGod 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: SQL语句:create PROCEDURE [dbo].[GetPageDataOutRowNumber](@tn nvarchar(30),--表名称@idn nvarchar(20),--表主键名称@pi int = 1,--当前页数@ps int = 7,--每页大小@wh nvarcha... 阅读全文
posted @ 2015-07-21 10:40 ChineseMoonGod 阅读(219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 49 下一页