04 2017 档案

摘要:项目中需要做一些统计的图表,使用的是百度的EChart做的。 现贴上官网的案例地址: http://echarts.baidu.com/echarts2/doc/example.html 阅读全文
posted @ 2017-04-27 14:16 飞刀软件 阅读(526) 评论(0) 推荐(0)
摘要:为了提高效率,不妨写函数来对数据量较大的统计工作,例如: CREATE FUNCTION fun_CountSiteGroupTotal()RETURNS intASBEGIN declare @countNum int select @countNum=Count(*) from Com_Site 阅读全文
posted @ 2017-04-25 17:09 飞刀软件 阅读(161) 评论(0) 推荐(0)
摘要:CREATE PROCEDURE proc_CountSiteGroupByStructure -- Add the parameters for the stored procedure here @structureType int --传递参数ASBEGIN -- SET NOCOUNT ON 阅读全文
posted @ 2017-04-25 14:53 飞刀软件 阅读(2963) 评论(0) 推荐(0)
摘要:@Html.Raw() 会把字符串含有的html标签解析出来 例如:@Html.Raw("aaa</br>ccc") 输出结果就输出一行aaa,然后换行输出ccc 阅读全文
posted @ 2017-04-12 10:58 飞刀软件 阅读(1345) 评论(0) 推荐(0)