using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using S... ...
分类:
数据库 时间:
2019-06-29 13:16:33
阅读次数:
108
一、函数的作用域 1、作用域在定义函数时就已经固定住了,不会随着调用位置的改变而改变 二、匿名函数 三、函数式编程 函数的参数传入,是函数吃进去的食物,而函数return的返回值,是函数拉出来的结果,面向过程的思路就是,把程序的执行当做一串首尾相连的函数,一个函数吃,拉出的东西给另外一个函数吃,另外 ...
分类:
编程语言 时间:
2019-06-28 00:46:52
阅读次数:
111
如何居中div? 水平居中:给div设置一个宽度,然后添加margin:0 auto属性 div{ width:200px; margin:0 auto; } 让绝对定位的div居中 div { position: absolute; width: 300px; height: 300px; mar ...
分类:
其他好文 时间:
2019-06-27 16:13:02
阅读次数:
100
总节常用的CSS 常用的CSS 1. text-shadow文本阴影{水平方向 垂直方向 模糊值 颜色} 2. color文本颜色 3. text-decoration文字特效{none/overline上划线/underline下划线/line-though删除线} 4. direction表示文 ...
分类:
Web程序 时间:
2019-06-25 10:24:54
阅读次数:
176
1 #include <uf.h> 2 #include <uf_part.h> 3 #include <atlstr.h> 4 #include <iostream> 5 #include <sstream> 6 7 using std::string; 8 9 10 UF_initialize( ...
分类:
系统相关 时间:
2019-06-22 20:07:05
阅读次数:
276
写在前面 上篇文章介绍如何将wcf项目,修改成restful风格的接口,并在上面提供了查询的功能,上篇文章中也感谢园友在评论中的提的建议,自己也思考了下,确实是那个道理。在urltemplate中,定义的url确实不规范,虽然能实现功能,但是缺少点专业性。rest风格的请求,是通过post,dele ...
分类:
其他好文 时间:
2019-06-21 09:17:46
阅读次数:
140
1.让用户选择: 2.用户选择注册就将账号和密码添加到userinfo.txt中,如果用户名存在就提示用户名存在,不存在就进行添加(3分) 3.用户选择登录,就验证用户的账号和密码是否与userinfo.txt一致,如果一致终止循环提示登录成功(3分) 4.让用户登录三次,三次错误提示用户名已锁定, ...
分类:
其他好文 时间:
2019-06-18 21:32:24
阅读次数:
142