不得不说,.NET中安装服务很麻烦,即要创建Service,又要创建ServiceInstall,最后还要弄一堆命令来安装和卸载。 今天给大家提供一种方式,直接使用我们的程序来安装/卸载服务,并且可以让一个exe即能直接运行也行安装为windows服务 首先我们创建一个Windows应用程序,(我创 ...
jsp其实就是servlet,当访问这个页面时,服务器会先把jsp页面编译为一个xxx_jsp.class和xxx_jsp.java,存在work中 使用eclipse的同学可以在你的eclipse的workspace的workspace\.metadata\.plugins\org.eclipse ...
分类:
Web程序 时间:
2016-10-21 13:16:06
阅读次数:
287
var document = webBrowser1.Document; document.ExecCommand("ClearAuthenticationCache", false, null);找了好几天才找着,国内搜索已经被百毒打败。Delete cookies in webBrowser w ...
分类:
Web程序 时间:
2016-10-21 13:11:52
阅读次数:
213
#include <stdio.h> #include <conio.h> #include <stdlib.h> #include <windows.h > void gotoxy(int x,int y) //cursor an gewuenschte position auf dem bild ...
分类:
其他好文 时间:
2016-10-21 10:53:03
阅读次数:
276
// 解构复制// let [foo,[[bar],baz]] = [1,[[2],3]];// console.log(foo);//1// console.log(bar);//2// console.log(baz);//3 // let [,,third] = ["foo","bar","b ...
分类:
其他好文 时间:
2016-10-21 00:29:58
阅读次数:
222
1、练习:写一个脚本判断当前系统上是否有用户的默认shell为bash;如果有,就显示有多少个这类用户,且显示其中一个用户名称;否则,就显示没有这类用户;#!/bin/bash#program#练习使用if语句判断默认shell#historylevel12016-10-19-14:00PATH=/bin:/sbin:/usr/bin:/usr/sbin:/..
分类:
系统相关 时间:
2016-10-20 07:56:26
阅读次数:
263
1、let算术运算表达式letC=$A+$Beg:A=3B=5letC=$A+$Becho$C[root@xuelinuxtest]#A=3[root@xuelinuxtest]#B=3[root@xuelinuxtest]#letC=$A+$B[root@xuelinuxtest]#echo$C62、$[算术运算表达式]C=$[$A+$B]eg:A=2B=6C=$[$A+$B]echo$C[root@xuelinuxtest]#A=2[root@xuelinuxtest]#B..
分类:
系统相关 时间:
2016-10-20 01:10:47
阅读次数:
193
CSS counters let you create dynamic lists without JavaScript. In this lesson, we will create a multi-level table of contents using the CSS counter-res ...
分类:
Web程序 时间:
2016-10-18 22:53:03
阅读次数:
203
遇到了要写出es6新特性的题目,所以查阅了资料来总结一下,点击查看原文。 进入正题,最常用的ES6特性有:let, const, class, extends, super, arrow functions, template string, destructuring, default, rest ...
分类:
其他好文 时间:
2016-10-18 18:26:04
阅读次数:
209
Linux中有四种算术运算,分别是expr,let,$[],$(())。下面分别介绍一下这四种算术运算的使用方法一、expr的用法[root@ssspure~]#expr1+2
3
[root@ssspure~]#expr1-2
-1
[root@ssspure~]#expr8+6
14
[root@ssspure~]#expr8-6
2
[root@ssspure~]#expr8\*6
48
[root@ssspure~]#e..
分类:
系统相关 时间:
2016-10-17 00:57:47
阅读次数:
200