会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Zbu
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
下一页
2017年6月1日
Sql语句对列的增删改
摘要: Sql语句对列的增删改:增加新列:alter table tableName add columnName bit删除某一列:alter table tableName drop column columnName修改列的类型:alter table tableName alter column c
阅读全文
posted @ 2017-06-01 11:51 Zbu
阅读(271)
评论(0)
推荐(0)
2017年5月2日
本地内容复制到远程桌面
摘要: 在远程桌面显示本地磁盘,然后进行复制: https://jingyan.baidu.com/article/4ae03de31eb48d3eff9e6b12.html 远程桌面无法显示本地磁盘时: https://jingyan.baidu.com/article/363872ecfe84776e4
阅读全文
posted @ 2017-05-02 15:10 Zbu
阅读(246)
评论(0)
推荐(0)
2017年4月20日
href属性赋值|隐藏页面元素|重新加载页面
摘要: 给href属性赋值:<a id="link" href="">百度</a>document.getElementById("link").href = data; 隐藏页面元素:document.getElementById("Id").style.display="none";document.g
阅读全文
posted @ 2017-04-20 15:14 Zbu
阅读(436)
评论(0)
推荐(0)
让元素浮动在某个位置
摘要: 让元素浮动在某个位置:<div style="z-index:100;position:fixed;top:300px;left:500px;"> <div class="div-alert" id="div-alert" style="display:none"></div> </div>//元素
阅读全文
posted @ 2017-04-20 15:08 Zbu
阅读(807)
评论(0)
推荐(0)
js弹出对话框
摘要: js弹出对话框:if (confirm("您确定要删除吗?删除后将无法恢复!")) { //点击确定后执行的代码 } else { //点击取消后执行的代码 }
阅读全文
posted @ 2017-04-20 15:06 Zbu
阅读(190)
评论(0)
推荐(0)
"System.StackOverflowException"类型的未经处理的异常在SharingPlatform.dll中发生
摘要: C# 未处理StackOverflowException"System.StackOverflowException"类型的未经处理的异常在SharingPlatform.dll中发生解决方案:程序中出现了死循环,仔细检查代码
阅读全文
posted @ 2017-04-20 15:05 Zbu
阅读(1866)
评论(0)
推荐(0)
路径中添加时间
摘要: 路径中加时间:FileInfo info = new FileInfo(@"d:/"+DateTime.Now.ToString("yyyy-MM-dd")+".docx");FileInfo info = new FileInfo(@"d:/"+DateTime.Now.ToString("yyy
阅读全文
posted @ 2017-04-20 15:04 Zbu
阅读(343)
评论(0)
推荐(0)
在vs的插件选择中找不到svn
摘要: 在vs的插件选择中找不到svn的解决方案:在vs的代码扩展器的联机中搜下svn,点击下载安装重启vs即可 一般自己直接下载安装的svn,vs可能会识别不到
阅读全文
posted @ 2017-04-20 15:03 Zbu
阅读(1351)
评论(0)
推荐(0)
使用百度富文本编辑器
摘要: 插件下载地址:http://ueditor.baidu.com/website/download.html 具体引用: 把下载的文件完全的额引入到你的项目中,然后编辑页面内容: <!--加载编辑器的容器--> <script id="container" style="height: 700px"
阅读全文
posted @ 2017-04-20 14:58 Zbu
阅读(971)
评论(0)
推荐(0)
2017年4月14日
char[]与string转换
摘要: char[]与string之间的转换:string转char[]:string a="afsdafa";char[] data=a.ToCharArray(); char[]转string:string str=new string(data); byte[]与string之间的转换:byte[]
阅读全文
posted @ 2017-04-14 08:42 Zbu
阅读(499)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
下一页
公告