摘要: /// <summary> /// 制作缩略图 /// </summary> /// <param name="fileName">原图路径</param> /// <param name="newFileName">新图路径</param> /// <param name="maxWidth">最大宽度</param> /// <param name="maxHeight">最大高度</param&g 阅读全文
posted @ 2011-08-03 09:21 来了就看看 阅读(205) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 获取中文全拼字符串 /// </summary> /// <param name="x">中文字符串</param> /// <returns>拼音字符串</returns> public static string GetSpell(string x) { int[] iA = new int[] { -20319 ,-20317 ,-20304 ,-20295 ,-20292 ,-20283 ,-20265 ,-20257 ,-20242 ,-20230 ,-20 阅读全文
posted @ 2011-08-03 09:18 来了就看看 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 3.分页:1 select * from (select ROW_NUMBER() over( order by BrandChineseName desc) num ,* from T_AutoBrand where isdeleted=0) tb where num between 3 and 41.分组查询ALTER PROC [dbo].[UP_ArticleInfo_GetArticlesByGroup]@startIndex INT,@endIndex INT,@typeID INT,@ShuLiang INT,@categoryID INTAS SELECT * FROM ( S 阅读全文
posted @ 2011-08-03 09:17 来了就看看 阅读(254) 评论(0) 推荐(0) 编辑