使用 CDOSYS 发送电子邮件 CDO (Collaboration Data Objects) 是一项微软的技术,设计目的是用来简化通信程序的创建。 CDOSYS 是 ASP 中的内置组件。我们会向您展示如何使用该组件来发送电子邮件。 CDONTs 怎么样? 微软已经在 Windows 2000 ...
分类:
Web程序 时间:
2020-10-19 22:42:34
阅读次数:
29
1 using Newtonsoft.Json; 2 using Newtonsoft.Json.Linq; 3 4 static void Main(string[] args) 5 { 6 TestJsonValid(); 7 Console.ReadLine(); 8 } 9 10 stati ...
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;usi ...
1.一对一和一多对多是一样的,多对多不太一样 2.增 post class BookView(APIView): def post (self,request,*args,**kwargs): publish=Publish.objects.filter(pk=1).first() author=A ...
分类:
其他好文 时间:
2020-10-12 20:01:23
阅读次数:
32
1 背景 在k8s中基于alpine做底层系统的容器进行git lfs push操作时,发现报错无法上传成功 Fatal error: Server error: http://git.ops.xxxxx.com/xxxx/yyyy.git/gitlab-lfs/objects/b6f9dd313c ...
分类:
Web程序 时间:
2020-10-10 17:45:46
阅读次数:
29
前言 Django的默认缓存是存在内存当中,重启服务缓存就失效了。 文章选择用redis做缓存,需要预先安装redis数据库并启动服务 安装pip install django-redis 附带django-redis中文文档:django-redis中文文档 代码实现 在项目中的setting.p ...
分类:
其他好文 时间:
2020-09-24 20:47:27
阅读次数:
47
消除代码中的坏味道,编写高质量代码 Intro# 想要写出较好的代码,保证代码的高质量需要时刻警惕代码中的坏味道,今天分享一下,我觉得平时写的代码中可能会出现的坏味道代码的一些示例 常见的坏味道代码# Bug Logically(null check etc.) 严格的来说,这可能是一个 BUG 级 ...
分类:
其他好文 时间:
2020-09-24 00:08:21
阅读次数:
51
将特性插入,就是插入一个标志?然后再类typeof中存在一(字段?方法?)对多(特性) 当调用特性的方法的时候就是调用想对应类的 方法; using System; using System.Collections.Generic; using System.Linq; using System.T ...
分类:
其他好文 时间:
2020-09-18 01:20:53
阅读次数:
25
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
测试窗体为: 直接上代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:
数据库 时间:
2020-09-17 12:31:54
阅读次数:
43