上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 在服务器端创建按钮添加对话框(可能用到的比较少,但是可以这么干) 1 Button1.Attributes.Add("onclick","return confirm(’确认?’)"); 2 Button1.attributes.add("onclick","if(confirm(’are you 阅读全文
posted @ 2015-06-21 13:19 紫系流月 阅读(211) 评论(0) 推荐(0) 编辑
摘要: public:访问不受限制。 1 class PointTest 2 { 3 public int x; 4 public int y; 5 } 6 7 class MainClass4 8 { 9 static void Main() 10 {11 ... 阅读全文
posted @ 2015-06-19 00:26 紫系流月 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 以前学过Oracle,电脑上也装过,以后也没卸载,只是把服务设为手动关闭了事,这次又要用Oracle发现很多东西都忘了,看到那么多服务,该启动那个都不知道了。。。。。 Oracle ORCL VSS Writer Service:Oracle卷映射拷贝写入服务,VSS(Volume Shadow C 阅读全文
posted @ 2015-06-18 01:29 紫系流月 阅读(2370) 评论(1) 推荐(0) 编辑
摘要: (1).第一类:create view v as select * from table;(2).第二类:create view v as select id,name,age from table;(3).第三类:create view v[vid,vname,vage] as select id... 阅读全文
posted @ 2015-05-24 18:00 紫系流月 阅读(55874) 评论(3) 推荐(2) 编辑
摘要: 今天一个家伙说创建个数据库,搞了半天没弄好,习惯了图形界面,这些东西都忘了 全还给了老师。。。。。。 阅读全文
posted @ 2015-05-23 17:19 紫系流月 阅读(794) 评论(0) 推荐(1) 编辑
摘要: 1 #include 2 3 //{3,5,8,7,6} 4 /* 5 int max(int *nums,int len) 6 { 7 int i; 8 int max=nums[0];//假定第0个元素为最大值 9 for(i=1;imax) 13 { 14 max = value;//如果找到比max还... 阅读全文
posted @ 2015-05-22 11:31 紫系流月 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 这几天搞了个简单的三层,数据库操作的帮助类实现using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Data;... 阅读全文
posted @ 2015-05-19 20:42 紫系流月 阅读(5152) 评论(0) 推荐(0) 编辑
摘要: .Net开发的部分知名网站案例:http://www.godaddy.com 全球最大域名注册商http://www.ips.com 环迅支付,国内最早的在线支付平台http://www.icbc.com.cn中国工商银行http://www.vancl.com 凡客诚品http://www.m18... 阅读全文
posted @ 2015-05-17 14:50 紫系流月 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 今天无意在网上看到一些招聘试题,就看了看,发现好多东西都忘了,就把代码又打了一遍1.拉姆达表达式(Lambda Expressions)(MSDN链接:https://msdn.microsoft.com/zh-cn/library/bb549151.aspx)无参数的拉姆达表达式+Func委托给... 阅读全文
posted @ 2015-05-16 21:01 紫系流月 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 今天逛社区,无意间看到一段JS代码,感觉挺有意思,记录下来。 代码: 运行结果: 突然看到的时候不假思索的就认为输出的是110,110,200,后来发觉自己错了。原来这里面有个 Js作用域与作用域链。 在js里面,当方法执行的时候会为方法产生一个执行环境,环境里面有方法的作用域链。这个作用域链我把它 阅读全文
posted @ 2015-04-25 20:02 紫系流月 阅读(421) 评论(2) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页