2022年4月25日

Ant design Vue的使用

摘要: //导入vue第三方库<script src="../vue.js"></script> <script src="antd.min.js"></script> <link rel="stylesheet" href="antd.min.css"> <div id="app"> <a-menu st 阅读全文

posted @ 2022-04-25 20:33 钟硕cool 阅读(578) 评论(0) 推荐(0) 编辑

2022年4月19日

HttpModule的使用

摘要: 1:创建TestHttpModule类:继承于接口IHttpModule namespace WebApplication5._1 { public class TestHttpModule : IHttpModule { public void Dispose() { throw new NotI 阅读全文

posted @ 2022-04-19 18:08 钟硕cool 阅读(55) 评论(0) 推荐(0) 编辑

HttpHandler实现验证码

摘要: 1:创建VerificationCode类(一般处理程序)继承于接口:IHttpHandler, IRequiresSessionState namespace WebApplication5._4 { /// <summary> /// VerificationCode 的摘要说明 /// </s 阅读全文

posted @ 2022-04-19 17:58 钟硕cool 阅读(33) 评论(0) 推荐(0) 编辑

HttpHandler对象的使用(1)

摘要: HttpHandler对象的概述与基本使用(HttpHandler实现IHttpHandler接口) 每个Http请求都可能通过多个HttpModule处理,然而最终的处理中心是HttpHandler,如果说HttpModule负责苏哦有的初始化和请求收尾的工作,那么HttpHandler就是负责具 阅读全文

posted @ 2022-04-19 13:41 钟硕cool 阅读(92) 评论(0) 推荐(0) 编辑

HttpHandler的使用

摘要: 1:原网页界面: <div> <img src="images/adv1.jpg"/> <img src="images/adv2.jpg"/> <img src="images/adv3.jpg"/> </div> 默认 images/adv1.jpg 的默认图片地址:https://localh 阅读全文

posted @ 2022-04-19 12:39 钟硕cool 阅读(98) 评论(0) 推荐(0) 编辑

2022年4月3日

DBHelper.cs(c#)完

摘要: //需要导入命名空间 using System.Data; using System.Data.SqlClient; public class DBHelper { //创建链接字符串 public static string str = "server=.;database=数据库名称;Integ 阅读全文

posted @ 2022-04-03 14:24 钟硕cool 阅读(77) 评论(0) 推荐(0) 编辑

2022年3月6日

asp系统对象的使用(上传图片)

摘要: //文件的上传笔记(这个方法放到上传图片点击按钮事件中) //文件上传使用到的控件FileUpload、Image、Lable if(FileUpload1.HasFile)//判断是否有文件上传 { string fileName = FileUpload1.FileName; //截取上传文件的 阅读全文

posted @ 2022-03-06 13:53 钟硕cool 阅读(156) 评论(0) 推荐(0) 编辑

2021年7月23日

c#制作猜数字小游戏代码

摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文

posted @ 2021-07-23 22:24 钟硕cool 阅读(601) 评论(0) 推荐(0) 编辑

2021年6月27日

大一期末考试类型

摘要: public class DBHelper { //创建连接字符串 public static string str = "server=.;database=StuDB;Integrated Security=true"; public static SqlConnection conn = nu 阅读全文

posted @ 2021-06-27 15:51 钟硕cool 阅读(43) 评论(0) 推荐(0) 编辑

2021年6月24日

treeview控件使用+连接数据库库

摘要: //没有理由不坚持,慢慢走吧,后面的路或许很难,别放弃!private void Form3_Load(object sender, EventArgs e) { //添加一个根节点 TreeNode root = new TreeNode("游戏类型"); treeView1.Nodes.Add( 阅读全文

posted @ 2021-06-24 21:59 钟硕cool 阅读(228) 评论(0) 推荐(0) 编辑

导航