摘要:
截取方法 extractVideoFrame(video){ // 创建视频元素 const videoElement = document.createElement('video'); videoElement.preload = 'metadata'; videoElement.src = U 阅读全文
摘要:
/// <summary> /// 获取动态缩略图 /// </summary> /// <param name="path"></param> /// <returns></returns> public string GetThumbnail11(string path) { try { str 阅读全文
摘要:
public bool IsNumber(String strNumber) { Regex objNotNumberPattern = new Regex("[^0-9.-]"); Regex objTwoDotPattern = new Regex("[0-9]*[.][0-9]*[.][0-9 阅读全文
摘要:
private void CopyFile(string srcFile, string destDir) { DirectoryInfo destDirectory = new DirectoryInfo(destDir); string fileName = Path.GetFileName(s 阅读全文
摘要:
加入如下代码在标签前 点击查看代码 <script language=javascript> function preview() { bdhtml=window.document.body.innerHTML; sprnstr="<!--startprint-->"; eprnstr="<!--e 阅读全文
摘要:
使用VS创建windows服务项目: 创建好项目 会出现一个设计界面 右键弹出对话框 选择添加安装程序 名字什么的自己可以改: 项目目录: 打开项目中的ProjectInstaller.Designer.cs 修改windows服务名称描述以及启动方式等: 点击查看代码 partial class 阅读全文
摘要:
[HttpGet] public async Task<ActionResult> DownTestFile(RedScarfBadgeManage.Dto.RedScarfBadgeStudentListByConditionInput input) { using (var client = n 阅读全文
摘要:
var controlSchedulesRepository = Abp.Dependency.IocManager.Instance.Resolve<Configuration.IAppConfigurationAccessor>(); var optionsBuilder = new DbCon 阅读全文
摘要:
编写工作类 public class UTaskEventHanlder : BackgroundJob<UpByTermIdInput>, ITransientDependency { private readonly IRepository<EvaluationSystem.EntityDesi 阅读全文
摘要:
protected DataTable RemoveEmpty(DataTable dt) { List<DataRow> removelist = new List<DataRow>(); for (int i = 0; i < dt.Rows.Count; i++) { bool IsNull 阅读全文