摘要:
#region ConvertJsonToSortedDictionary 将json转为 SortedDictionary /// <summary> /// 将json转为 SortedDictionary /// </summary> /// <param name="json"></para 阅读全文
摘要:
原文地址:http://hi.baidu.com/chary8088/blog/item/22755e51a10ecd888d54300c.html1. 没有什么时候事务是绝对的,往往书里写的不建议 不允许,往往在有些情况下是 灵丹妙药2. 相信自己,失败了,总结一下,好好努力前进.3. 失败的时候... 阅读全文
摘要:
修改 WdatePicker.js 文件$crossFrame:false, 值设成 false,原来的值是 true 阅读全文
摘要:
/// /// 查看是否存在 /// /// /// public static bool Illegalchar(string str) { LoadIllegalchar... 阅读全文
摘要:
数据库表结构《1》新增数据,并且按照"name" 字段查询,如果重复返回“error”=-100 ,如果成功返回ID,如果失败ID=0USE [数据库]GOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER procedure [dbo].[存储过程... 阅读全文
摘要:
循环排序查询数据 阅读全文
摘要:
if (GetUploadFileContent.PostedFile.InputStream.Length < 1) { Msg.Text = "请选择文件"; return; } string FileNam... 阅读全文
摘要:
-------distinct 去重复查询select * from accounts acc join (select distinct accid from roles) r on r.accid=acc.ID-----不需要distinct select * from (select MAX(ID)roleid,accid from roles group by accid) rr join (select * from accounts) acc on acc.ID=rr.accid--------解释一下不用distinct 去重复查询语句Select * from (Select 阅读全文
摘要:
前台代码 1 2 3 4 5 6 css代码#link_button { width: 400px; margin: 0; font-size: 12px; } #link_button ul { float: left; margin: 0; padding: 5px 0 0 30px; } #link_button ul li { float: left; list-style: none; cursor: pointer; width: 73px; text-align: center; padding: 20px 20px 20px 20px; line-heigh... 阅读全文
摘要:
select sum(a) from (select COUNT(*) a from _aa2 union allselect COUNT(*) a from _aa1 ) c 阅读全文