asp.net api 下载文件与.net 5.0 下载文件
摘要:1.asp.net api 下载文件 [HttpGet] public HttpResponseMessage DownFile(string fileName) { try { string filefullPath = Path.Combine(System.Web.HttpContext.Cu
阅读全文
posted @
2022-06-04 17:13
诗情寻知己
阅读(240)
推荐(0) 编辑
C# 清空文件夹内容
摘要:1 /// <summary> 2 /// 清空文件夹 3 /// </summary> 4 /// <param name="filefullPath">文件夹路径</param> 5 /// <param name="FileExpirationTime">过期时间</param> 6 priv
阅读全文
posted @
2022-06-04 16:56
诗情寻知己
阅读(1450)
推荐(0) 编辑
css隐藏table前两行
摘要://隐藏table第一行 .gc-layout-table > tr:first-child { display: none !important; } //隐藏table第二行 .gc-layout-table > tr:nth-child(2) { display: none !importan
阅读全文
posted @
2022-06-02 08:25
诗情寻知己
阅读(166)
推荐(0) 编辑
sql 分页
摘要:declare @pageIndex int = 1, @pageSize int =10 select * from (select row_number() over(order by 排序字段 asc) as num,* from 表名) temp_row where num between
阅读全文
posted @
2022-06-02 08:20
诗情寻知己
阅读(18)
推荐(0) 编辑