上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: string strsql = $"select name from 表名"; DataTable dt = base.GetDataTable(strsql); string[] result = new string[dt.Rows.Count]; for (int i = 0; i < res 阅读全文
posted @ 2021-06-08 16:52 时光博客 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: 在字符串前加$相当于对string.format()的简化 如: int m_a = 1; int m_b = 2; 使用string.format(): Console.WriteLine(string.format("this is a:{0},this is b:{1}"),m_a,m_b)) 阅读全文
posted @ 2021-05-25 14:32 时光博客 阅读(161) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 删除文件 /// </summary> /// <param name="fileUrl">路径</param> public string DeleteImgFile(string id, string url) { var obj = new object { 阅读全文
posted @ 2021-05-24 17:32 时光博客 阅读(238) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// base64转换为图片并保存在指定目录中 /// </summary> /// <param name="strbase64">64Base码</param> /// <returns></returns> public static void Base64ToI 阅读全文
posted @ 2021-05-24 17:15 时光博客 阅读(459) 评论(0) 推荐(0) 编辑
摘要: //打印预览 window.print(); /*设置默认横向打印*/ @page { size: landscape; } /*设置默认纵向打印*/ @page { size: portrait; } 阅读全文
posted @ 2021-05-10 10:41 时光博客 阅读(212) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { var page = 1;//抓取的页数 //抓取网页资源 for (int i = 1; i <= page; i++) { string str = GetHtmlStr($"https://fabiaoqing.com/bia 阅读全文
posted @ 2021-04-26 16:32 时光博客 阅读(1455) 评论(0) 推荐(1) 编辑
摘要: <input type="file" name="dddd" id="imgs"> <input type="button" onclick="ck()" value="submit" /> var reader = new FileReader(); var AllowImgFileSize = 阅读全文
posted @ 2021-04-26 15:13 时光博客 阅读(97) 评论(0) 推荐(0) 编辑
摘要: <form id="form1"> <input type="text" value="1" name="Total" /> </form> //判断序列化表单是否包含空值 var data = $("#form").serialize(); var array = data.split("&"); 阅读全文
posted @ 2021-04-26 15:11 时光博客 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 目录文件创建 //设置文件路径 string filePath = @"D:\file"; //判断路径目录是否存在 if (!Directory.Exists(filePath)) { //创建该路径目录 Directory.CreateDirectory(filePath); } 返回JSON数 阅读全文
posted @ 2021-04-25 10:03 时光博客 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 视图的好处 1、重用SQL语句。2、简化复杂的SQL操作。在编写查询后,可以方便地重用它而不必知道其基本查询。3、使用表的一部分而不是整个表。4、保护数据。可以授予用户访问表的特定部分的权限,而不是整个表的访问权限。5、更改数据格式和表示。视图可返回与底层表的表示和格式不同的数据。 使用方法 1、创 阅读全文
posted @ 2021-04-21 16:15 时光博客 阅读(303) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页