上一页 1 ··· 15 16 17 18 19
摘要: <dx:ASPxComboBox ID="comBrand" CssClass="case" ClientInstanceName="comBrand" runat="server" ValueType="System.String" ValueField="BrandID" TextField=" 阅读全文
posted @ 2018-07-28 17:40 何以平天下 阅读(291) 评论(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 何以平天下 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: ASPxGridView 1.//ASPxGridView前台获取行号 <ClientSideEvents RowClick="function(s, e) { s.GetRowKey(e.visibleIndex); }" /> 2.在后台动绑定gridview的列 绑定列不能直接对象调用修改内部 阅读全文
posted @ 2018-07-09 15:53 何以平天下 阅读(275) 评论(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 何以平天下 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1.//ASPxGridView前台获取行号 <ClientSideEvents RowClick="function(s, e) { s.GetRowKey(e.visibleIndex); }" /> 2.在后台动绑定gridview的列 绑定列不能直接对象调用修改内部属性(原理:定义的所有列都 阅读全文
posted @ 2018-06-13 15:58 何以平天下 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 下面是ASPxGridView的自带按钮的文字等修改 <SettingsCommandButton> <NewButton Text=" " Image-ToolTip="新建" Image-IconID="actions_add_16x16"></NewButton> <DeleteButton 阅读全文
posted @ 2018-06-13 14:15 何以平天下 阅读(419) 评论(0) 推荐(0) 编辑
摘要: <SettingsBehavior AllowFocusedRow="true" /> 行的焦点,行的点击以及Command列按钮点击可以得到焦点 Styles-FocusedRow-BackColor="#f1f1f1" 可以设置焦点行的背景颜色, Styles-FocusedRow-ForeCo 阅读全文
posted @ 2018-06-12 13:40 何以平天下 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 其中CustomButtonClick="ButtonClick",e.buttonID可以获取到自定义按钮的id e.visibleIndex获取到行的索引 grdList.GetRowKey(e.visibleIndex) 可以获取到行的key 阅读全文
posted @ 2018-06-12 13:25 何以平天下 阅读(551) 评论(1) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19