码迷,mamicode.com
首页 > 其他好文 > 详细

基于框架的操作

时间:2016-10-16 11:49:08      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

前台定义按钮
技术分享
1 <epoint:WebToolBar runat="server" ID="WebToolBar1" AddTarget="top" RelationName="培训信息"
2         EnableUpdate="false" OnCommandClick="WebToolBar1_CommandClick" GridBelongPlaceHolder="cphContent" TargetGrid="DataGrid1"
3         HideSelectValueBelongPlaceHolder="cphToolBar" HideSelectValueID="hidSelectedFields" EnableDelete="false" EnableAdd="false" EnableExport="false">
4         <Commands>
5             <epoint:ToolCommand CausesValidation="true" CommandName="bmExcel" CommandType="Normal" Text="导出" />
6         </Commands>
7     </epoint:WebToolBar>
View Code

后台隐藏方法

技术分享
1 WebToolBar1.Commands.GetNamedItem("按钮名字").Visible = false;
View Code
获取前台传过来的值:
技术分享
 1 public string PiCi
 2         {
 3             get
 4             {
 5                 if (Request.QueryString["PiCi"] != null)
 6                 {
 7                     return Request.QueryString["PiCi"].ToString();
 8                 }
 9                 else
10                 {
11                     return "";
12                 }
13             }
14         }
View Code
后台根据代码项的值获取代码项文本:
技术分享
1 new Epoint.MisBizLogic2.BL.CodeMain().GetCodeText_FromHash("PX_培训形式", mplan.PXForm);
View Code
前台根据代码项的值获取代码项的文本:
技术分享
1 <%#new Epoint.MisBizLogic2.BL.CodeMain().GetCodeText_FromHash("PX_性别",Convert.ToString( DataBinder.Eval(Container, "DataItem.Sex")))%>
View Code

 

 

基于框架的操作

标签:

原文地址:http://www.cnblogs.com/lyhsblog/p/5966141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!