诗情寻知己
揽几缕、轻挽起,暮暮朝朝与君语。
摘要: public static class Extend { //注意:这里的密钥sKey必须能转为8个byte,即输入密钥为8半角个字符或者4个全角字符或者4个汉字的字符串 public static string strKey = "bingTest"; public static string s 阅读全文
posted @ 2023-06-08 17:01 诗情寻知己 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 操作环境: SQL Server Management Studio 15.0.18424.0SQL Server 管理对象 (SMO) 16.100.47021.0+7eef34a564af48c5b0cf0d617a65fd77f06c3eb1Microsoft Analysis Service 阅读全文
posted @ 2023-05-22 10:50 诗情寻知己 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1.子级选中,父级也选中样式修改: .el-submenu.is-active > .el-submenu__title { color: #FFFFFF; background-color: #7E8796 !important; } 2.子级选中后,父级有下划线,可以通过以下样式修改去除下划线 阅读全文
posted @ 2023-05-17 10:08 诗情寻知己 阅读(448) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { int j = 0; Console.WriteLine("++ j =>" + (++j)); //++ j => 1 int s = 0; Console.WriteLine("s++ =>" + (s++)); //s++ = 阅读全文
posted @ 2023-04-18 15:53 诗情寻知己 阅读(12) 评论(0) 推荐(0) 编辑
摘要: delete a from tb_a a inner join ( select i.id from tb_a i inner join tb_b b on i.id = b.id ) c on a.id=c.id 阅读全文
posted @ 2023-04-14 08:25 诗情寻知己 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 兼容中英文逗号:,, SELECT a.id, b.Content FROM ( SELECT id, Content = CAST('<v>' + replace(Content, ',', '</v><v>') + '</v>' AS XML) FROM tb_Content ) a OUTER 阅读全文
posted @ 2023-04-13 13:30 诗情寻知己 阅读(213) 评论(0) 推荐(0) 编辑
摘要: ‘文件路径:D:\Uploads\2022\1\2\056(de652330-9c1e-410e-bdfd-19711e9c25b6).doc ‘获取名称:056(de652330-9c1e-410e-bdfd-19711e9c25b6).doc ‘获取:056 Dim filePath As St 阅读全文
posted @ 2023-03-21 14:36 诗情寻知己 阅读(120) 评论(0) 推荐(0) 编辑
摘要: ‘删除文件 Dim filePath As String = “D:\Uploads\2022\1\2\056(de652330-9c1e-410e-bdfd-19711e9c2536).doc” File.Delete(filePath) ‘VB 删除文件夹以及其内所有文件 ‘删除文件夹以及其内所 阅读全文
posted @ 2023-03-21 14:35 诗情寻知己 阅读(548) 评论(0) 推荐(0) 编辑
摘要: public class DownloadController : BaseController { private readonly IHostingEnvironment _hostingEnvironment; public DownloadController(IHostingEnviron 阅读全文
posted @ 2023-02-09 16:58 诗情寻知己 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 控制器添加内容 public class BookingController : BaseController { private readonly IBookingService _bookingService; private readonly IHostingEnvironment _host 阅读全文
posted @ 2023-02-01 11:00 诗情寻知己 阅读(80) 评论(0) 推荐(0) 编辑