摘要:
查看当前默认编码方式 show VARIABLES like 'character_%'; 把linan1类型改成utf8 set character_set_database=utf8; ps:这一步我感觉关系不大?不过网上都说让改,我没改好像也没问题 ef连接字符串修改: Data Source 阅读全文
摘要:
上传期间可不断继续上传新的内容 效果: 后台代码: public partial class Upload : Window { //当前上传到第几个文件 int current = 0; //已上传了多少byte long uploadedByte =0; //共有多少byte long allB 阅读全文
摘要:
后台代码: public partial class Login : Window { private System.Threading.Timer CountDown = null; public Login() { InitializeComponent(); CountDown = new T 阅读全文
摘要:
当有人在微信公众号发送消息或点击菜单时,微信公众号会向你的服务器发起一次请求,你可以做出回应 [HttpPost] public IActionResult Check() { var buffer = new byte[Convert.ToInt32(Request.ContentLength)] 阅读全文