Reserved space (invalid address) is protected against abnormal access. Reads from invalid address return garbage; writes to invalid address are blocked. Access to reserved space can generate exception...
分类:
其他好文 时间:
2014-06-20 11:58:31
阅读次数:
260
Ext JS消息提示框主要包括:alert、confirm、prompt、show
1、Ext.MessageBox.alert() 调用格式: alert( String title, String msg, [Function fn],
[Object scope] ) 参数说明: t...
分类:
其他好文 时间:
2014-06-11 12:16:46
阅读次数:
323
前台datagrid数据绑定#region 导出到excel中 /// /// 2014-6-6
/// /// /// protected void lnkbtnExcel_Click(object sender, EventArgs
e)//导出Excel按钮点击事件 { DataSet ...
分类:
其他好文 时间:
2014-06-11 11:22:33
阅读次数:
195
/// /// 将字符串数组转换成整形数组 /// /// /// protected static
int[] ToIntArray(string[] Content) { int[] c = new int[Content.Length...
分类:
其他好文 时间:
2014-06-11 11:13:15
阅读次数:
179
成员变量buf是存储数据的缓冲区 count是缓冲区中的有效字节数。 /** * The
buffer where data is stored. */ protected byte buf[]; /** * The number of valid
byte...
分类:
编程语言 时间:
2014-06-11 11:03:44
阅读次数:
269
成员变量 //由该流的创建者提供的 byte 数组。 protected byte
buf[]; //要从输入流缓冲区中读取的下一个字符的索引。 protected int pos; //流中当前的标记位置。 protected int
mark = 0; ...
分类:
编程语言 时间:
2014-06-11 10:44:54
阅读次数:
366
这是对整个界面的快捷键的设置,比如查询,保存。 1 protected override
bool ProcessCmdKey(ref Message msg, Keys keyData) 2 { 3 if (keyData == Keys.F...
内部类是指在一个外部类的内部再定义一个类。类名不需要和文件夹相同。*内部类可以是静态static的,也可用public,default,protected和private修饰。(而外部顶级类即类名和文件名相同的只能使用public和default)。注意:内部类是一个编译时的概念,一旦编译成功,就会...
分类:
编程语言 时间:
2014-06-08 07:40:37
阅读次数:
327
摘要MVC框架针对HttpResponse进行抽象与多态,使HttpResponse均可表示为ActionResult。那么,抽象和多态表现在哪里呢?//封装一个Action的结果.public
abstract class ActionResult{ protected ActionResu...
分类:
Web程序 时间:
2014-06-08 00:17:18
阅读次数:
321
直接上代码:
写一个Bean,封装数据
package com.mbl.wbsconn;
import java.util.List;
import java.util.Map;
public class BaseBean {
protected String usid;
protected String pwd;
protected String error;
p...
分类:
移动开发 时间:
2014-06-07 15:17:20
阅读次数:
405