摘要: select distinct(AlbumName) from A_AccountPhone where Accountid =78通关关键字 distinct 将AlbumName字段中所以不重复的内容读出来。 阅读全文
posted @ 2014-03-25 23:18 稚涩青春 阅读(471) 评论(0) 推荐(0) 编辑
摘要: SQL里面一种用来截取字符串的方法,用的是表函数实现字符串截取并应用的SQL操作语句中。1、截取字符串表函数ALTER FUNCTION [dbo].[SplitToTable]( -- Add the parameters for the function here @SplitString nvarchar(max), @Separator nvarchar(10)='')RETURNS@SplitStringsTable TABLE( -- Add the column definitions for the TABLE variable here [id]... 阅读全文
posted @ 2014-03-25 23:16 稚涩青春 阅读(337) 评论(0) 推荐(0) 编辑
摘要: filter: alpha(opacity=40);background-color: rgb(0, 0, 0);background-color: rgba(0, 0, 0, 0.4); 通过改变最后的数值修改透明度。 阅读全文
posted @ 2014-03-25 23:15 稚涩青春 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 在标签中添加。 阅读全文
posted @ 2014-03-25 23:14 稚涩青春 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 1178321443 阅读全文
posted @ 2014-03-25 23:12 稚涩青春 阅读(104) 评论(0) 推荐(0) 编辑
摘要: [HttpPost] [ValidateInput(false)] public ActionResult UpdateInformationData(ITMovingData p_data) { p_data.InformationContent = Models.Common.DataChange.ToHtml(p_data.InformationContent); long id = dal.InsertInformationDate(p_data); return Json(id... 阅读全文
posted @ 2013-08-30 14:59 稚涩青春 阅读(111) 评论(0) 推荐(0) 编辑
摘要: public void CutToF(Stream stream) { Image initImage = Image.FromStream(stream, true); if (initImage.Width initHeight) { pickedImage = new Bitmap(initHeight, initHeight); pickedG =... 阅读全文
posted @ 2013-07-31 16:09 稚涩青春 阅读(231) 评论(0) 推荐(0) 编辑