上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 通过对android SDK Meneger的api及相关组件进行安装和卸载通过对android AVD Meneger对虚拟设备进行管理如下是相关配置。变量名:android值:C:\Program Files (x86)\Android\sdk\platform-tools;C:\Program... 阅读全文
posted @ 2015-11-18 23:24 objnet 阅读(236) 评论(0) 推荐(0)
摘要: 通常我们都会把当前操作系统的人员用session记录下来。方便我们记录对当前数据操作有记录处理凭证。在一般处理程序(ashx)中,遇到如下操作session的异常:“System.NullReferenceException”类型的异常在 App_Web_vea5kecg.dll 中发生,但未在用户... 阅读全文
posted @ 2015-11-18 22:46 objnet 阅读(329) 评论(0) 推荐(0)
摘要: 原文地址:http://www.cnblogs.com/vipsoft/archive/2012/10/19/2731126.html根据传进来不同的值,调用不同的方法View Codeprotected void btn_SwitchClick(object sender, EventArgs e... 阅读全文
posted @ 2015-11-17 22:16 objnet 阅读(520) 评论(0) 推荐(0)
摘要: html代码: $(document).ready(function () { $.ajax({ type: "POST", contentType: "json", url... 阅读全文
posted @ 2015-11-10 23:38 objnet 阅读(456) 评论(0) 推荐(0)
摘要: html代码: 测试demo 浏览 View Codeashx代码using System;using System.Drawing;using Syste... 阅读全文
posted @ 2015-11-09 23:48 objnet 阅读(1951) 评论(2) 推荐(0)
摘要: 原文地址:几种常见SQL分页方式效率比较分页很重要,面试会遇到。不妨再回顾总结一下。1.创建测试环境,(插入100万条数据大概耗时5分钟)。create database DBTestuse DBTest--创建测试表create table pagetest(id int identity(1,1... 阅读全文
posted @ 2015-11-09 00:14 objnet 阅读(300) 评论(0) 推荐(0)
摘要: javascript:history.go(-1); //返回之前页面javascript:history.go(1); //跳转到浏览过的前一页javascript:Refresh(); //刷新当前页面javascript:Quit();//推出当前页面 阅读全文
posted @ 2015-11-05 23:07 objnet 阅读(168) 评论(0) 推荐(0)
摘要: 转自:原文http://www.cnblogs.com/wulinfeng/archive/2012/08/31/2664720.html1 规范目的 ……………………………………………………… 32 适用范围 ……………………………………………………… 33 代码注释 ……………………………………... 阅读全文
posted @ 2015-11-04 00:00 objnet 阅读(185) 评论(0) 推荐(0)
摘要: const int length = 8; var a = new int[length][]; for (var i = 0; i < a.Length; i++) { a[i] = new int[... 阅读全文
posted @ 2015-11-03 00:17 objnet 阅读(227) 评论(0) 推荐(0)
摘要: 快速排序是先将大的值和小的值分成2组再进行比较整合输出最后排序结果; var arry = new int[] { 5, 45, 63, 8, 52, 99, 34 }; //建立数组 QuickSort(arry, 0, arry.Length - 1); forea... 阅读全文
posted @ 2015-11-01 23:57 objnet 阅读(183) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页