摘要: 1 首先我们需要提前准备存储账户和我们将上传文件的容器 2 从访问密钥区域获取存储帐户的连接字符串 3 需要添加以下NuGet包 Azure.Storage.Blob 4 示例代码 1 <Project Sdk="Microsoft.NET.Sdk.Web"> 2 <PropertyGroup> 3 阅读全文
posted @ 2022-05-19 13:30 追风小伙 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 1,概要 尝试利用Log4net在Azure Application Insights上打印日志的方法 2,环境 IDE:VisualStudio 2019 3,具体步骤 前提条件:项目的Azure Application Insights的相关设定完成 ① Nuget 包管理器控制台下安装下列相关 阅读全文
posted @ 2022-04-13 16:29 追风小伙 阅读(122) 评论(1) 推荐(0) 编辑
摘要: 1,最近发现,python的datetime可以直接运用比较运算符进行大小比较 首先定义一组9月份日期数组 from datetime import datetime targets = [ # 9/1到9/30的日期数据数组 datetime.datetime(2020, 9, 1, 0, 0), 阅读全文
posted @ 2020-09-11 13:21 追风小伙 阅读(15136) 评论(0) 推荐(0) 编辑
摘要: <script> window.addEventListener('DOMContentLoaded', function(e){ document.querySelector('#txt').addEventListener('blur',function(e){ var t=e.target; 阅读全文
posted @ 2020-06-03 12:10 追风小伙 阅读(171) 评论(0) 推荐(0) 编辑
摘要: JQUERY声明 阅读全文
posted @ 2019-08-19 16:29 追风小伙 阅读(918) 评论(0) 推荐(0) 编辑
摘要: redeploy.py filename import sys connect('UserID', 'Password', 'localhost:7001') redeploy('KkNu05E01EJB') disconnect() print('続行するにはEnterキーを押してください . . 阅读全文
posted @ 2018-11-21 16:27 追风小伙 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 1,右键点击要导出的数据库 2,点击Tasks ->Generate Scripts 3,点击next 4,选择Advanced(高级设置) 5,选择Schema and data 6,点击Next 7,完成 阅读全文
posted @ 2017-09-20 10:18 追风小伙 阅读(681) 评论(0) 推荐(1) 编辑
摘要: 1,定义数据库 Dim ctx = KikanContext.Current() 2,写sql语句 3,执行 其中HSY0230ViewModel是自建的接受数据类型的模型类 阅读全文
posted @ 2017-03-30 08:25 追风小伙 阅读(2081) 评论(0) 推荐(0) 编辑
摘要: 1,定义网格线种类 $LineStyle = "microsoft.office.interop.excel.xlLineStyle" -as [type] 2,指定网格线种类 $sheet.cells.item(2,3).borders.LineStyle = $LineStyle::xlDash 阅读全文
posted @ 2017-03-14 15:18 追风小伙 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: 关于Powershell的Excel操作,首先是基本操作 1,Excel应用定义 $excel = New-Object -ComObject Excel.Application 2, 对话框是否显示 $excel.displayAlerts = $false --不显示 $excel.displa 阅读全文
posted @ 2017-03-14 14:46 追风小伙 阅读(6766) 评论(0) 推荐(0) 编辑