1.aspx页面GridView直接绑定DataKeyNamesaspx设置:aspx.cs获取:protected void grvGrid_SelectedIndexChanging(object sender, GridViewSelectEventArgs e){ string id ...
分类:
其他好文 时间:
2014-12-16 18:23:58
阅读次数:
185
转载http://vase.iteye.com/blog/2114664 初学Android,发现模拟器上有不少限制,譬如标题中的存储限制,无论用ADT Manager如何设置,内部存储空间不会变大。 经过上网搜索解决办法,中文相关的文章虽多,但可以用方法甚少(对了,我用的Eclipse ADT,版...
分类:
移动开发 时间:
2014-12-16 17:02:13
阅读次数:
185
一轮面试下来,由最初的自信什么都能做,到现在感觉什么都不会做;但是面对面试官,却更坦然。对自己还能记得起来的面试题,稍微整理一下。欢迎指正。private、默认、protected、public作用范围1)private,同类2)默认,同类、同包3)protected,同类,同包,子类4)publi...
分类:
编程语言 时间:
2014-12-16 16:58:16
阅读次数:
148
一、点语法(一)认识点语法声明一个Person类:#import @interface Person : NSObject{ int _age;//默认为@protected}- (void)setAge:(int)age;- (int)age;@endView Code Person类...
分类:
编程语言 时间:
2014-12-16 16:41:37
阅读次数:
160
protected void Application_Start() { AreaRegistration.RegisterAllAreas(); //当数据库结构改变时,需要将数据库删除再创建 //Database...
分类:
数据库 时间:
2014-12-16 11:42:17
阅读次数:
185
错误描述普通Web项目,Web项目在32位系统上跑的好好的,一点问题没有。使用VS内置的开发服务器调试,页面能正常启动,但一连接数据库就报“ORA-06413: 连接未打开”错误。使用IIS Express或IIS服务器,启动时报错:HTTP 错误 500.21 - Internal Server ...
public abstract class ReplacedBean {protected static final Log log = LogFactory.getLog(ReplacedBean.class); public void process() { AnotherBean anothe...
分类:
编程语言 时间:
2014-12-16 11:20:20
阅读次数:
154
1.0 匿名函数和匿名类:internal delegate int AddDel(int a, int b); //泛型委托 delegate T Demo(int a,int b); delegate T Demo2( T1 a, int b); //Func Ac...
分类:
Web程序 时间:
2014-12-16 00:57:30
阅读次数:
286
1. 简述 private、 protected、 public、 internal 修饰符的访问权限。答 . private : 私有成员, 在类的内部才可以访问。protected : 保护成员,该类内部和继承类中可以访问。public : 公共成员,完全公开,没有访问限制。internal: ...
分类:
Web程序 时间:
2014-12-15 23:34:00
阅读次数:
311
以下分析都是基于HBase-0.98版本。 HRegionServer在启动的时候,会启动compactionChecker线程,compactionChecker会检测region是否需要compaction。 主要执行的逻辑如下: protected void chore() {
for (...
分类:
其他好文 时间:
2014-12-15 22:12:41
阅读次数:
361