首页 > 2020年12月24日 > 全部分享
asp.net WebForm
Repeater <script language="C#" runat="server"> protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ArrayList values = new ArrayL ...
分类:Web开发   时间:2020-12-24 00:55:29    收藏:0  评论:0  赞:0  阅读:25
未能加载文件或程序集“UFIDA.U8.UAP.GcRegister, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null”或它的某一个依赖项
这是做采购入库单新增的时候遇到的问题,我是采用模仿写用友u8的zpurrkdhead 主表视图和子表视图zpurrkdtail 去构建 xml文档这样做的,但是再做的时候 【cgcroutecode】这个字段直接给的null,和u8的视图的数据类型不匹配造成的错误,这个时候,如果用u8插件去上传,会 ...
分类:其他   时间:2020-12-24 00:55:17    收藏:0  评论:0  赞:0  阅读:65
在Linux/redhat中安装amazon-ssm-agent及注意事项
操作系统:Red Hat Enterprise Linux Server release 7.9 (Maipo) 首先说明一下SSM是什么、引用官网的说明: AWS Systems Manager Agent (SSM Agent) is Amazon software that can be in ...
分类:系统服务   时间:2020-12-24 00:55:03    收藏:0  评论:0  赞:0  阅读:39
pyqt5托盘
import sys from PyQt5.QtWidgets import * from PyQt5.QtCore import * from PyQt5.QtGui import * class TrayIcon(QSystemTrayIcon): def __init__(self, pare ...
分类:其他   时间:2020-12-24 00:54:54    收藏:0  评论:0  赞:0  阅读:56
【机器学习基础】2、matplotlib
一、matplotlib基本用法 import matplotlib.pyplot as plt # 1.创建画布 plt.figure(figsize=(10, 10), dpi=100) # 2.绘制折线图 plt.plot([1, 2, 3, 4, 5, 6 ,7], [17,17,18,15 ...
分类:其他   时间:2020-12-24 00:54:40    收藏:0  评论:0  赞:0  阅读:41
python3 unittest
Code import unittest class SimplisticTest(unittest.TestCase): def test(self): a = 'a' b = 'a' self.assertEqual(a, b) Output macname@MacdeMacBook-Pro c ...
分类:编程语言   时间:2020-12-24 00:54:28    收藏:0  评论:0  赞:0  阅读:31
SpringBoot连接MySql报错:The server time zone value '?й???????' 和 Access denied for user ''@'localhost' (using password: NO)
错误提示:Access denied for user ''@'localhost' (using password: NO) 我遇到的原因是application.yml配置文件中,字段拼写错误。 解决办法:确认字段是否拼写错误,和账号密码是否正确! 例如我的配置文件正确格式如下: spring: ...
分类:数据库技术   时间:2020-12-24 00:54:14    收藏:0  评论:0  赞:0  阅读:21
Ajax请求中的async:false/true的作用
原文连接:https://www.cnblogs.com/yiliweichinasoft/p/3667365.html Ajax请求中的async:false/true的作用 官方的解释是:http://api.jquery.com/jQuery.ajax/ async Boolean Defau ...
分类:Web开发   时间:2020-12-24 00:54:00    收藏:0  评论:0  赞:0  阅读:26
docker使用阿里云镜像报错
0、简单说明 使用docker阿里云镜像,需要首先登陆阿里云账户才行,搜索:容器镜像服务,然后docker示例地址如下: https://***.mirror.aliyuncs.com 每个人的***,都不一样。 1、阿里云官方文档 针对Docker客户端版本大于 1.10.0 的用户 您可以通过修 ...
分类:其他   时间:2020-12-24 00:53:46    收藏:0  评论:0  赞:0  阅读:51
Java基础系列(1)- java语言概述
一、Java技术体系平台 Java SE(Java Standard Edition)标准版 支持面向桌面级应用(如Windows下的应用程序)的Java平台,提供了完整的Java核心API,此版本以前称为J2SE Java EE(Java Enterprise Edition)企业版 是为开发企业 ...
分类:编程语言   时间:2020-12-24 00:53:36    收藏:0  评论:0  赞:0  阅读:24
Ubuntu 18.04.3 安装 CUDA 10.2
https://unix.stackexchange.com/questions/440840/how-to-unload-kernel-module-nvidia-drm https://arabelatso.github.io/2020/01/08/Install%20CUDA%20Toolki ...
分类:系统服务   时间:2020-12-24 00:53:25    收藏:0  评论:0  赞:0  阅读:25
Windows Command Line - Introduction to Files and Directory
Windows Command Line - Introduction to Files and Directory Rebooting the system using cmd and powershell cmd commands: shutdown -r Restart-Computer -d ...
分类:Windows开发   时间:2020-12-24 00:53:14    收藏:0  评论:0  赞:0  阅读:24
爬虫5-Scrapy爬虫架构
简介 Scrapy是爬取网站,提取结构性数据并存储的应用框架。对爬取过程中的请求、返回、解析、存储、调度等流程提供模块化支持。 items模块——定义需要爬取的数据字段 保存爬取到的数据的容器,python的字典类型。根据网站数据对item进行定义字段。 # items示例 import scrap ...
分类:其他   时间:2020-12-24 00:53:04    收藏:0  评论:0  赞:0  阅读:32
PostgreSQL 利用Pgpool-II的集群搭建方案
PostgreSQL 利用Pgpool-II的集群搭建方案 1. 下载安装 在官网 http://pgfoundry.org/projects/pgpool 下载 pgpool-II 2.2.2.tar.gz ,执行以下命令安装: Java代码 http://mengqingyu.javaeye.c ...
分类:数据库技术   时间:2020-12-24 00:52:50    收藏:0  评论:0  赞:0  阅读:33
TEXTAREA元素和textArea对象
项目中多次用到TextArea这个多行文本的HTML控件.关于这个控件的使用有下面一些特性需要掌握,才能在WEB前端用这个控件才能游刃有余。 1.cols -- 多行输入域的列数2.rows -- 多行输入域的行数 注意:cols:垂直列。在没有做样式表设置的情况下,它表示一行可以容纳的字节数。例如 ...
分类:其他   时间:2020-12-24 00:52:36    收藏:0  评论:0  赞:0  阅读:28
常用函数2
import tensorflow as tf import numpy as np "tf.where(),条件语句,真返回a" a = tf.constant([1, 2, 3, 1, 1]) b = tf.constant([0, 1, 3, 4, 5]) c = tf.where(tf.gr ...
分类:其他   时间:2020-12-24 00:52:22    收藏:0  评论:0  赞:0  阅读:27
python WEB 开发
socketserver 重写处理函数 import http.server import socketserver import os,io import urllib from http import HTTPStatus import email.utils import datetime i ...
分类:编程语言   时间:2020-12-24 00:52:09    收藏:0  评论:0  赞:0  阅读:31
Hive动态分区详解
动态分区调整 动态分区属性:设置为true表示开启动态分区功能(默认为false)hive.exec.dynamic.partition=true; 动态分区属性:设置为nonstrict,表示允许所有分区都是动态的(默认为strict)设置为strict,表示必须保证至少有一个分区是静态的hive ...
分类:其他   时间:2020-12-24 00:51:57    收藏:0  评论:0  赞:0  阅读:25
postgresql 导入导出
导出 pg_dump 备份:pg_dump -h localhost -p 5432 -U tradesns -W -F c -b -v -f "/home/tradeworkwangbin/us2010.backup" us2010 恢复:pg_restore -h 192.168.0.100 - ...
分类:数据库技术   时间:2020-12-24 00:51:44    收藏:0  评论:0  赞:0  阅读:42
顺序线性表——实验及提升训练
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include<stdbool.h> 4 /*此处是顺序线性表数据结构定义*/ 5 typedef int DataType; 6 struct seqList 7 {//有3个数据成员 8 int MAXN ...
分类:其他   时间:2020-12-24 00:51:34    收藏:0  评论:0  赞:0  阅读:125
389条   上一页 1 ... 17 18 19 20 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!