码迷,mamicode.com
首页 >  
搜索关键字:rowtype    ( 128个结果
想要隐藏掉gridview中的某一列,但是还想要使用该列数据解决办法。
试过visable=“false” 只能隐藏掉数据,但是访问的时候变成“”了。即无法使用。后来改变使用了模版列可以达到想要的效果。可以隐藏,可以访问。aspx页面: ' /> aspx.cs页面: if (e.Row.RowType == DataControlRowType.DataRow) .....
分类:其他好文   时间:2014-07-16 18:54:28    阅读次数:192
gridview控件的编辑属性
if (e.Row.RowType == DataControlRowType.DataRow)e.Row.RowType 是指当前行的类型 DataControlRowType 是GridView的行的类型集合 , 其中的DataRow是数据绑定行 这个判断语句的意思就是判断当前行是不是数据绑定行...
分类:其他好文   时间:2014-07-16 18:02:17    阅读次数:181
PLSQL 定义record记录
1. PLSQL基本使用 注:1. 三段 declare              Begin                 Exception                   End; 2. 声明:emp.ename%type; 和字段的属性相同。 3. begin: select 带查询自动 into 存储变量。 4. 条件语句: (1)if then     ...
分类:数据库   时间:2014-07-13 18:49:06    阅读次数:305
GridView内容<br />换行
if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Cells[6].Text = Server.HtmlDecode(e.Row.Cells[6].Text); e.Row.Ce...
分类:其他好文   时间:2014-07-13 09:01:38    阅读次数:158
oracle 游标使用(显式游标)
1. Set Serveroutput on; declare Cursor tem_cursor is select * from xuesheng xs; v_row tem_cursor%rowtype;begin open tem_...
分类:数据库   时间:2014-07-13 00:35:28    阅读次数:195
GridView等表格模板列绑定数据的方法
//绑定GridView每一行中的CheckBoxList protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataCon...
分类:其他好文   时间:2014-07-06 23:55:28    阅读次数:362
EBS-PAC成本更新事务处理
?? PAC成本更新事务处理 DECLARE   l_itfs_rec mtl_transactions_interface% ROWTYPE; BEGIN   --插入接口表   SELECT mtl_material_transactions_s.nextval     INTO l_txn_header_id     FROM dual;   v_date ...
分类:其他好文   时间:2014-07-04 09:28:03    阅读次数:791
oracle常用的复合数据类型 : BULK COLLECT(成批聚合类型)和数组集合type类型is table of 表%rowtype index by binary_integer
例1: 批量 查询部门号为 "10" 号的并把它们打印出来 . DECLARE TYPE emp_table_type IS TABLE OF my_emp%ROWTYPE INDEX BY BINARY_INTEGER; v_emp_table emp_table_type;BEGIN SELE....
分类:数据库   时间:2014-05-26 01:26:47    阅读次数:356
128条   上一页 1 ... 11 12 13
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!