部分内容为学习过程中从网上搜集保存备份,以防源网站关闭后无法检索。如有涉及版权请留言,看到后处理

12 2019 档案

摘要:[Key,Column(Order = 0)] [Key,Column(Order = 1)] 阅读全文
posted @ 2019-12-25 11:04 Y档案Y 阅读(1714) 评论(0) 推荐(0)
摘要:一般处理程序:ashx,接受请求,处理后输出,无页面,其他同aspx中的.cs 验证码: <%@ WebHandler Language="C#" Class="show" %> using System; using System.Web; using System.Drawing; using System.Web.SessionState;//IRequiresSessionState的命名 阅读全文
posted @ 2019-12-11 10:25 Y档案Y 阅读(377) 评论(0) 推荐(0)
摘要:还原数据库时,提示还原成功,可是数据库列表中该数据库显示正在还原中: 执行此命令即可: RESTORE DATABASE EnterPriseBuilding WITH RECOVERY 了解SQLServer脚本之数据库误删数据找回:http://www.cnblogs.com/Leo_wl/p/ 阅读全文
posted @ 2019-12-05 09:49 Y档案Y 阅读(461) 评论(0) 推荐(0)
摘要:update table1 set column1 = table2.column1,column2 = table2.column2 from ( select sum(column1),sum(column2) from table1 where 1 = 1 )as table2 where 2 阅读全文
posted @ 2019-12-04 15:30 Y档案Y 阅读(136) 评论(0) 推荐(0)
摘要:1,http://www.tuxera.com/community/open-source-ntfs-3g/ 下载ntfs-3g_ntfsprogs-2016.2.22这个压缩包,可用wget和浏览器两种方式都可以,前者更快; 2,解压,tar -xvf ***; 3,进入到解压目录***/Down 阅读全文
posted @ 2019-12-04 15:28 Y档案Y 阅读(974) 评论(0) 推荐(0)