<html> <head> <style type="text/css"> .res { color: Red; } .result{ background: yellow; } </style> <script src="https://apps.bdimg.com/libs/jquery/2.1 ...
分类:
其他好文 时间:
2020-12-08 12:17:40
阅读次数:
4
Startup.cs ConfigureServices 添加配置 services.AddControllers().AddJsonOptions(options => { options.JsonSerializerOptions.Encoder = JavaScriptEncoder.Crea ...
分类:
Web程序 时间:
2020-11-27 11:34:27
阅读次数:
9
遍历字符串 在oc中遍历字符串的至少可以使用以下两种方法 (1) 通过查找的方式来(这方式适合所有格式的子符串,推荐使用) NSString *newStr =@"abdcdddccdd00大家好哦"; NSString *temp = nil; for(int i =0; i < [newStr ...
分类:
移动开发 时间:
2020-11-23 11:50:19
阅读次数:
25
1.目标框架设置为.net core3.1/.net5 2.将所有的nuget包升级为最新版本 3.需要改动的一些地方 Program.cs public class Program { public static void Main(string[] args) { CreateWebHostBu ...
分类:
Web程序 时间:
2020-11-20 12:23:49
阅读次数:
49
Double-weekly-contest-36 排名不高,再接再厉 1/5515. 设计停车系统 简单题,没什么好说的 class ParkingSystem { int[] carContainers; public ParkingSystem(int big, int medium, int ...
分类:
其他好文 时间:
2020-11-11 16:47:39
阅读次数:
26
Citrix桌面用户登录的流程图Citrix虚拟桌面用户登录过程:1.用户通过网页或Citrix客户端插件访问WI,将用户密码提交给WebInterface站点。2.WebInterface将用户和密码传递给DDC控制器。3.DDC控制器利用最终用户提交的用户和密码凭据提交给AD验证用户的用户名和密码。4.验证用户通过后,DDC控制器在站点数据库中查询为最终用户分配的桌面组。5.DDC控制器利用从
分类:
其他好文 时间:
2020-11-06 02:25:39
阅读次数:
22
编码生成器 '' import os, time, string, random, tkinter, qrcode from pystrich.ean13 import EAN13Encoder import tkinter.filedialog # 文件对话框,其中tkinter模块为python ...
分类:
其他好文 时间:
2020-11-06 01:36:13
阅读次数:
15
打开系统相册:打开相册部分机型黑屏【小米9,系统10】 //打开系统相册浏览照片 val intent = Intent() intent.action = Intent.ACTION_MAIN intent.addCategory(Intent.CATEGORY_APP_GALLERY) cont ...
分类:
其他好文 时间:
2020-10-29 09:21:11
阅读次数:
17
前提是DDC与express装在一起的情况下。遇到的问题:DDC连接express时显示错误:验证服务器实例"Localhost\sqlexpress"上的数据库“CitrixxxxLogging”失败。关联SQL错误为:连接超时时间已到。在尝试使用预登陆握手确认时超过了此超时时间。这可能是因为预登陆握手失败或服务器未能及时响应。尝试连接到此服务器花费的持续时间是-[Pre-L
分类:
数据库 时间:
2020-10-26 11:48:05
阅读次数:
27
jQuery知识总结 1、语法:$(document).ready(function(){}) $(function(){}); 2、光标手形:cursor:pointer; 3、jQuery事件处理方法 -click() 鼠标单击事件 -dblclick() 鼠标双击事件 -focus() 获取焦 ...
分类:
Web程序 时间:
2020-10-16 11:07:13
阅读次数:
37