摘要: DECLARE @dt datetime SET @dt=GETDATE()--1.短日期格式:yyyy-m-d SELECT REPLACE(CONVERT(varchar(10),@dt,120),N'-0','-')--2.长日期格式:yyyy年mm月dd日 阅读全文
posted @ 2018-07-30 15:50 何以平天下 阅读(326) 评论(0) 推荐(0) 编辑
摘要: select REPLACE(CONVERT(varchar ,CreateDate,23),'-','年') CreateDate from SG_Client 2018年06年11 阅读全文
posted @ 2018-07-30 15:48 何以平天下 阅读(449) 评论(0) 推荐(0) 编辑
摘要: <dx:ASPxComboBox ID="comBrand" CssClass="case" ClientInstanceName="comBrand" runat="server" ValueType="System.String" ValueField="BrandID" TextField=" 阅读全文
posted @ 2018-07-28 17:40 何以平天下 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 项目中最好不要有相同名称的session和cookie 阅读全文
posted @ 2018-07-16 15:38 何以平天下 阅读(114) 评论(0) 推荐(0) 编辑
摘要: select c.ClientID,c.Name,case MAX(c.Grade) when 0 then '厂家直营' when 1 then '总代理' when 2 then '省级代理'when 3 then '省级代理' end Grade,MAX(d.CooperationIntent 阅读全文
posted @ 2018-07-11 11:26 何以平天下 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: ASPxGridView 1.//ASPxGridView前台获取行号 <ClientSideEvents RowClick="function(s, e) { s.GetRowKey(e.visibleIndex); }" /> 2.在后台动绑定gridview的列 绑定列不能直接对象调用修改内部 阅读全文
posted @ 2018-07-09 15:53 何以平天下 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-20 15:52 何以平天下 阅读(74) 评论(0) 推荐(0) 编辑
摘要: response对象提供的Cookie操作方法只有一个添加操作add(Cookie cookie)。要想修改Cookie只能使用一个同名的Cookie来覆盖原来的Cookie,达到修改的目的。删除时只需要把maxAge修改为0即可。 注意:从客户端读取Cookie时,包括maxAge在内的其他属性都 阅读全文
posted @ 2018-06-14 14:37 何以平天下 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1.//ASPxGridView前台获取行号 <ClientSideEvents RowClick="function(s, e) { s.GetRowKey(e.visibleIndex); }" /> 2.在后台动绑定gridview的列 绑定列不能直接对象调用修改内部属性(原理:定义的所有列都 阅读全文
posted @ 2018-06-13 15:58 何以平天下 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 下面是ASPxGridView的自带按钮的文字等修改 <SettingsCommandButton> <NewButton Text=" " Image-ToolTip="新建" Image-IconID="actions_add_16x16"></NewButton> <DeleteButton 阅读全文
posted @ 2018-06-13 14:15 何以平天下 阅读(430) 评论(0) 推荐(0) 编辑