摘要:
Sql语句对列的增删改:增加新列:alter table tableName add columnName bit删除某一列:alter table tableName drop column columnName修改列的类型:alter table tableName alter column c 阅读全文
摘要:
在远程桌面显示本地磁盘,然后进行复制: https://jingyan.baidu.com/article/4ae03de31eb48d3eff9e6b12.html 远程桌面无法显示本地磁盘时: https://jingyan.baidu.com/article/363872ecfe84776e4 阅读全文
摘要:
给href属性赋值:<a id="link" href="">百度</a>document.getElementById("link").href = data; 隐藏页面元素:document.getElementById("Id").style.display="none";document.g 阅读全文
摘要:
让元素浮动在某个位置:<div style="z-index:100;position:fixed;top:300px;left:500px;"> <div class="div-alert" id="div-alert" style="display:none"></div> </div>//元素 阅读全文
摘要:
js弹出对话框:if (confirm("您确定要删除吗?删除后将无法恢复!")) { //点击确定后执行的代码 } else { //点击取消后执行的代码 } 阅读全文
摘要:
C# 未处理StackOverflowException"System.StackOverflowException"类型的未经处理的异常在SharingPlatform.dll中发生解决方案:程序中出现了死循环,仔细检查代码 阅读全文
摘要:
路径中加时间:FileInfo info = new FileInfo(@"d:/"+DateTime.Now.ToString("yyyy-MM-dd")+".docx");FileInfo info = new FileInfo(@"d:/"+DateTime.Now.ToString("yyy 阅读全文
摘要:
在vs的插件选择中找不到svn的解决方案:在vs的代码扩展器的联机中搜下svn,点击下载安装重启vs即可 一般自己直接下载安装的svn,vs可能会识别不到 阅读全文
摘要:
插件下载地址:http://ueditor.baidu.com/website/download.html 具体引用: 把下载的文件完全的额引入到你的项目中,然后编辑页面内容: <!--加载编辑器的容器--> <script id="container" style="height: 700px" 阅读全文
摘要:
char[]与string之间的转换:string转char[]:string a="afsdafa";char[] data=a.ToCharArray(); char[]转string:string str=new string(data); byte[]与string之间的转换:byte[] 阅读全文