摘要: https://www.cnblogs.com/wangjinya/p/14535023.html 阅读全文
posted @ 2023-10-21 15:53 KevinSteven 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 设置问用户名和邮箱后 使用以下命令,下载线上代码 git clone [代码URL] 上传代码 git add -A git commit -m [文件名称] git push -u origin master 阅读全文
posted @ 2023-10-04 16:26 KevinSteven 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.用户名和邮箱的作用 用户名和邮箱地址是本地Git客户端的一个变量,用户每次提交代码都会记录用户名和邮箱。 安装好Git后,打开Git bash Here,在命令框中,输入以下命令 2.设置用户名 3.设置邮箱 4.查看用户名和邮箱 阅读全文
posted @ 2023-10-04 16:01 KevinSteven 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/m372838677/article/details/121360607 string connString = "Server=MATEBOOK16S\\SQLEXPRESS;DataBase=MISDB;Uid=sa;Pwd=123456"; v 阅读全文
posted @ 2023-10-02 13:30 KevinSteven 阅读(13) 评论(0) 推荐(0) 编辑
摘要: string connString = "Server=MATEBOOK16S\\SQLEXPRESS;DataBase=MISDB;Uid=sa;Pwd=123456"; //连接数据库void ConnectDB(){ //1.创建Connecation对象 //SqlConnection co 阅读全文
posted @ 2023-09-30 14:09 KevinSteven 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/460610918 阅读全文
posted @ 2023-09-29 16:09 KevinSteven 阅读(12) 评论(0) 推荐(0) 编辑
摘要: //简单事务实现代码 static void Test() { DataTable dt = new DataTable(); SqlConnection cnn = new SqlConnection("连接字符串"); SqlCommand cmd = new SqlCommand(); cmd 阅读全文
posted @ 2023-09-29 16:00 KevinSteven 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.WebRequest方法 Post: private void button1_Click(object sender,EventArgs e) { string ss = HttpPost("http://localhost:41558/api/Demo/PostXXX","{Code:\"t 阅读全文
posted @ 2023-09-26 21:03 KevinSteven 阅读(45) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Upgrader/article/details/107774139 阅读全文
posted @ 2023-09-26 16:12 KevinSteven 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/DotnetNb/article/details/131075198 https://blog.csdn.net/m0_52559870/article/details/124980608 阅读全文
posted @ 2023-09-26 16:01 KevinSteven 阅读(55) 评论(0) 推荐(0) 编辑