现在的位置: 首页 > 综合 > 正文

网络转载和Case When then

2014年02月21日 ⁄ 综合 ⁄ 共 772字 ⁄ 字号 评论关闭

http://blog.csdn.net/21aspnet/archive/2007/03/25/1540301.aspx【DataGrid七十二变】

 

http://singlepine.cnblogs.com/articles/266538.html 功能齐全的DataGrid

 

myControl myCtrl=(myControl)this.LoadControl("myControl.ascx"); 【动态加载 用户控件】

 

create table test_case_when (
  a varchar2(5),
  b varchar2(5)
);

insert into test_case_when values ('*','*');
insert into test_case_when values ('+','+');
insert into test_case_when values ('-','-');
insert into test_case_when values ('.','.');

select a,
  case
    when b = '*' then 'star'
    when b = '+' then 'plus'
    when b = '-' then 'minus'
    else '????'
  end
from test_case_when;

 

打印---------利用WebBrowser彻底解决Web打印问题

http://www.cnblogs.com/waitrabbit/archive/2006/06/09/421326.html

Calendar1.SelectedDayStyle.BackColor = System.Drawing.Color.Black ;
Calendar1.SelectedDayStyle.ForeColor = System.Drawing.Color.Blue  ;


抱歉!评论已关闭.