摘要: 1、WebClient:System.Net.WebClient wc = new System.Net.WebClient(); Byte[] pageData = wc.DownloadData("网页地址"); string s= System.Text.Encoding.Defaul... 阅读全文
posted @ 2015-08-03 15:30 人生不断学习 阅读(1263) 评论(2) 推荐(1) 编辑
摘要: 1.通过构造函数特点:传值是单向的(不可以互相传值),实现简单实现代码如下:在窗体Form2中 int value1;string value2;public Form2 ( int value1 , string value2 ){ InitializeComponent ( );... 阅读全文
posted @ 2015-07-23 11:04 人生不断学习 阅读(827) 评论(0) 推荐(0) 编辑
摘要: navigator-- navigator对象通常用于检测浏览器与操作系统的版本navigator,中文"导航器"引用网址:http://www.dreamdu.com/javascript/window.navigator/navigator对象是window对象的属性由于navigator没有统... 阅读全文
posted @ 2015-07-01 10:35 人生不断学习 阅读(330) 评论(0) 推荐(0) 编辑
摘要: staticvoidMain(string[] args){strings="";//(1)字符访问(下标访问s[i]) s="ABCD"; Console.WriteLine(s[0]);//输出"A"; Console.WriteLine(s.Length);//输出4 Console.Writ... 阅读全文
posted @ 2015-06-29 16:22 人生不断学习 阅读(403) 评论(0) 推荐(1) 编辑
摘要: 1:解释link:连接平常的状态visited:连接被访问过之后hover:鼠标放到连接上的时候 active:连接被按下的时候 详细的: :hover版本:CSS1/CSS2 兼容性:IE4+ NS4+语法:Selector : hover { sRules }说明:设置对象在其鼠标悬停时的样式... 阅读全文
posted @ 2015-06-23 10:12 人生不断学习 阅读(670) 评论(0) 推荐(0) 编辑
摘要: Oracle 中启动 Scott 用户 的方法 , 在 Oracle11gR2, (g 代表‘网络’的意思) 数据库中 Scott 这个用户 安装时是被锁定的,安装 Oracle的时候 ,你可以直接选择 给该用户 解锁,如果忘记了解锁, 后期可以使用 sqlplus工具 通过命令 将其 解锁。 默... 阅读全文
posted @ 2015-01-26 15:38 人生不断学习 阅读(2859) 评论(0) 推荐(0) 编辑
摘要: Ubuntu是最近很流行的一款Linux系统,因为Ubuntu默认是不启动root用户,现在介绍如何进入root的方法。(1)从user用户切换到root用户不管是用图形模式登录Ubuntu,还是命令行模式登录,我们会发现缺省的用户是user但是当我们需要执行一些具有root权限的操作(如修还系统文... 阅读全文
posted @ 2015-01-16 15:32 人生不断学习 阅读(287) 评论(0) 推荐(0) 编辑
摘要: configure作用:是源码安装软件时配置环境用的 他根据你的配置选项和你的系统情况生成makefile文件 为make 做准备最常用的参数: ./configure --prefix 作用:不指定prefix,则可执行文件默认放在/usr/local/bin,库文件默认放在/usr/local/... 阅读全文
posted @ 2015-01-08 14:46 人生不断学习 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 今天在linux下 用tar -zxvf xxx.tar.bz2然后就报这个错。gzip: stdin: not in gzip formattar: Child returned status 1tar: Error exit delayed from previous errors解决方案:压缩... 阅读全文
posted @ 2015-01-07 15:11 人生不断学习 阅读(3283) 评论(0) 推荐(0) 编辑
摘要: 关于sql语句中的连接(join)关键字,是较为常用而又不太容易理解的关键字,下面这个例子给出了一个简单的解释 --建表table1,table2:create table table1(id int,name varchar(10))create table table2(id int,score... 阅读全文
posted @ 2014-12-16 16:20 人生不断学习 阅读(615) 评论(0) 推荐(0) 编辑