2014-1202

做ASP.NET MVC开发的时候,经常会出现一下错误:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specifie 阅读全文>>

标签: SQL Network Interfaces, error: 26 阅读:10849
2013-0912

int转BitArray:

BitArray bitArray=new BitArray(BitConverter.GetBytes(int));

BitArray转int:

int[] d=new int[1];
bitArray.CopyTo(d, 0);


标签: Int BitArray int转BitArray 阅读:12118
2013-0315

DataTables

网址:http://datatables.net/

插件功能比较强大,使用比较简单,包括排序、搜索、分页、划过高亮、键盘操作、滚动、添加新行、各类语言等等优秀特征。


Slider

网址:http://jqueryui.com/slider/

通过拖拽实现数值变动,比较适合同时筛选多组数据... 阅读全文>>

标签: Jquery DataTables Slider Intro.js 阅读:11101
2011-0928
int转换成byte数组原理

例如int -15,因为int占4字节,所以byte数组长度为4,先将-15转换成二进制:

11111111 11111111 11111111 11110001,然后将每个字节转换成十进制由低到高存入byte数组中,所以最后结果是F1 FF FF FF ,byte[0]=F1 byte[1]=FF byte[2]=FF byte[3]=FF
标签: int转换成byte 阅读:18735