摘要: 转载:http://hi.baidu.com/iamstar0/item/d5e0c09158bf8acbb72531e6 最近在编写FTP上传数据的批处理时,需要用到局域网内传输数据来提示错误,突然想起忘了N久没用的命令(netsend),结果在win7下cmd运行netsend/?运行失败。经过百度大神的搜索,原来从vista之后netsend命令被微软取消了,再次百度,WIN7局域网内发送消息可以使用MSG命令。MSG系统自带使用帮助C:\Windows\system32>MSG将消息发送给用户。MSG{username|sessionname|sessionid|@filenam 阅读全文
posted @ 2014-02-17 14:43 yuluhuang 阅读(5384) 评论(0) 推荐(0) 编辑
摘要: #include #include //关于指针的指针,赋值以及其意义 //指针:包括指针所指向的内存区,还有指针本身所占据的内存区。 [重要 ] int main() { printf("a=8\n\n"); int a=8;//定义一个int型变量a,假设其在内存中的地址是1000 printf("a的值[a]=%d,\na的地址[&a]=%d\n",a,&a); //a=8 ,&a=10000 int *q;//定义指针变量q,q本身也需要内存存储,假设其地址是2000 q=&a; prin... 阅读全文
posted @ 2014-02-04 18:39 yuluhuang 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Therestrictoption is typically set to:'A'- only matches attribute name'E'- only matches element name'AE'- matches either attribute or element nameLet's change our directive to userestrict: 'E':1. index2.html 1 2 3 4 5 6 7 8 9 10 11 12 13 main2.js1 var app=angular. 阅读全文
posted @ 2014-01-04 15:33 yuluhuang 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ng-click 1 2 3 4 5 6 7 8 9 10 {{js.name}}-{{js.city}}11 测试12 13 14 15 16 View Code 阅读全文
posted @ 2014-01-02 13:43 yuluhuang 阅读(129) 评论(0) 推荐(0) 编辑
摘要: index.html 1 2 3 4 Using Angular JS Directives and Data Binging 5 6 7 8 9 10 11 12 61 62 63 View Code view1 1 2 View 1 3 Name: 4 5 6 7 8 {{cust.name}} 9 10 11 Customer Name:12 13 14 Customer City:15 16 Add Cu... 阅读全文
posted @ 2014-01-01 10:18 yuluhuang 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 Name:10 11 12 {{cust.name}}13 14 15 16 29 30 31 阅读全文
posted @ 2014-01-01 10:14 yuluhuang 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 自动筛选 1 2 3 4 5 6 7 8 9 Name:10 11 12 {{cust.name}}13 14 15 16 28 29 30 阅读全文
posted @ 2013-12-31 15:46 yuluhuang 阅读(130) 评论(0) 推荐(0) 编辑
摘要: html Total todos:{{getTotalTodos()}} {{todo.text}} Add View Code css1 .done-true{2 text-decoration: line-through;3 color: gray;4 }View Code js 1 function TodoCtrl($scope){ 2 $scope.totalTodos=4; 3 4 ... 阅读全文
posted @ 2013-12-31 15:42 yuluhuang 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1.选定源码目录可以是任何目录,本文选定的是/usr/local/srccd /usr/local/src2.安装PCRE库ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/下载最新的 PCRE 源码包,使用下面命令下载编译和安装 PCRE 包:cd /usr/local/srcwgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.32.tar.gztar-zxvf pcre-8.32.tar.gzcdpcre-8.32./configuremakemakei. 阅读全文
posted @ 2013-12-21 13:55 yuluhuang 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Session对象详解一、Session对象的成员概述 ⒈Session对象的集合 Contents :没有使用元素定义的存储于特定Session对象的所有变量的集合。 StaticObject:使用元素定义的、存储于Session对象中的所有变量的集合。 例:在default.asp中有如下赋值 Session("a")="a" Session("b")=128 Session("c")=false 则有contents集合 Session.Contents(1)="a"'也可写为Se 阅读全文
posted @ 2013-12-12 16:41 yuluhuang 阅读(723) 评论(0) 推荐(0) 编辑