2023年6月25日

随笔笔记

摘要: CREATE INDEX idx_table_column_name ON [table] (column_name desc) 阅读全文

posted @ 2023-06-25 09:37 小小先生、 阅读(11) 评论(0) 推荐(0) 编辑

2022年12月30日

T-SQL 将表打印为 C# 类对象

摘要: declare @TableName sysname = 'FM_ResignationApplication'declare @Result varchar(max) = '/// <summary>/// ' + @TableName +'/// </summary>public class ' 阅读全文

posted @ 2022-12-30 09:37 小小先生、 阅读(23) 评论(0) 推荐(0) 编辑

2022年11月1日

Sql server 2008 作业失败通知邮件配置

摘要: 1、【建立邮件服务器】管理 》数据库邮件》创建smtp服务器的邮件,如邮件为abc@123.com,服务器smtp.126.com 可理解为发件人 2、【建立操作员】启动“sqlserver代理”,在操作员中新建操作员,如abc_am,并提供邮件地址,如:888@123.com 可理解为收件人 3、 阅读全文

posted @ 2022-11-01 10:32 小小先生、 阅读(207) 评论(0) 推荐(0) 编辑

2022年8月9日

T-SQL

摘要: create table yourtable(column1 int primary key,....) --增加列alter table [TableName] add [P_ID] bigint not null default 0--删除列alter table [TableName] dro 阅读全文

posted @ 2022-08-09 14:06 小小先生、 阅读(37) 评论(0) 推荐(0) 编辑

2022年5月5日

html模板读取

摘要: public static class TxtHelper { public static string ReadFile(string fileName) { FileStream fs = File.OpenRead(fileName); using (StreamReader reader = 阅读全文

posted @ 2022-05-05 14:07 小小先生、 阅读(36) 评论(0) 推荐(0) 编辑

2022年3月9日

html 模板 分页

摘要: 通过html导出PDF如何分页 每页一个DIV,加上样式page-break-inside:avoid; 即可分页了 .pdfpage{page-break-inside:avoid;} <div class="pdfpage">1</div> <div class="pdfpage">2</div 阅读全文

posted @ 2022-03-09 13:48 小小先生、 阅读(448) 评论(0) 推荐(0) 编辑

DIV+CSS 太极八卦

摘要: <p>太极页面</p><style><!--* { box-sizing: border-box; margin: 0px; padding: 0px; } body { background-color: #eeeeee; } #八卦 { width: 400px; height: 400px; 阅读全文

posted @ 2022-03-09 10:02 小小先生、 阅读(29) 评论(0) 推荐(0) 编辑

2022年2月15日

.NET Core MVC 批量压缩下载文件

摘要: Controller : public async Task<IActionResult> WordDownLoad(string ids) { var taskserviceR = App.GetService<MyTaskService>(); var taskR = App.GetServic 阅读全文

posted @ 2022-02-15 10:42 小小先生、 阅读(455) 评论(0) 推荐(0) 编辑

2021年11月30日

DirectShow.NET 视频拍照

摘要: DirectShow.NET 是一群牛人用C#重写的DirectShow所有接口函数的类库,是在C#下实现视频 Code using System; using System.Collections.Generic; using System.Drawing; using System.Linq; 阅读全文

posted @ 2021-11-30 11:10 小小先生、 阅读(469) 评论(0) 推荐(0) 编辑

2021年11月10日

C# RedisHelper

摘要: 1 using System; 2 using StackExchange.Redis; 3 namespace StackExchangeRedis 4 { 5 public class RedisHelper 6 { 7 8 private ConnectionMultiplexer Redis 阅读全文

posted @ 2021-11-10 08:43 小小先生、 阅读(821) 评论(0) 推荐(0) 编辑

导航