c#
最好结果
生于忧患死于安乐
展开
-
c#链接MySQL
dll文件链接地址 https://download.csdn.net/download/qq_48307365/41218942代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;//连接数据库引用using System.Data;//datatable引用原创 2021-11-13 12:54:22 · 92 阅读 · 0 评论 -
实时刷新的在线聊天室
1.大厅聊天2.私人聊天3.加好友4.发表情 图片目前已经实现了这些功能原创 2021-06-09 17:50:22 · 285 阅读 · 0 评论 -
ASP.NET 缓存
缓存体系 缓存 页面缓存 应用程序数据缓存 页面输出缓存 页面部分缓存 .原创 2021-05-12 10:32:55 · 577 阅读 · 1 评论 -
c#图片上传
只要上传就可以了的if (FileUpload1.HasFile)//文件是否上传 { string filename = FileUpload1.FileName; if (filename.EndsWith(".jpg") || filename.EndsWith(".png"))//文件错误条件 { string strpath = Server.MapPath("/WebSi原创 2021-04-25 10:15:36 · 569 阅读 · 0 评论 -
字符串分割数组 CheckBoxList1循环选中 DropDownList1默认值选中
string sz = Session["Hobby"].ToString(); String[] s = sz.Split(',');//字符串变数组 ,逗号分隔 foreach (string i1 in s) { for (int i = 0; i < CheckBoxList1.Items.Count; i++) { if (CheckBoxList1.Item...原创 2021-04-25 09:12:31 · 86 阅读 · 0 评论 -
RadioButtonList1 默认选中
RadioButtonList1.Items[0].Selected = true;原创 2021-04-25 09:07:43 · 547 阅读 · 0 评论 -
日期计算生日
//这里是计算生日 string cc=d11.Value; DateTime dt = Convert.ToDateTime(cc); DateTime now = DateTime.Now; int age = now.Year - dt.Year; if (now.Month<dt.Month) { age--; }else if (now.Month==dt...原创 2021-04-25 08:46:13 · 260 阅读 · 0 评论 -
GridView1_PageIndexChanging 分页
this.GridView1.PageIndex = e.NewPageIndex; jiazai();原创 2021-04-25 08:43:41 · 653 阅读 · 0 评论 -
GridView1 修改
GridView1.DataKeys DataKeys 属性绑定主键 int BookID = int.Parse(GridView1.DataKeys[e.RowIndex]["BookID"].ToString()); Label BookNumber = (Label)GridView1.Rows[e.RowIndex].FindControl("Label2");原创 2021-04-25 08:42:23 · 199 阅读 · 0 评论 -
DropDownList1 添加一个默认选中项
DropDownList1 添加一个默认选中项 DropDownList1.DataSource = bb.drop(); DropDownList1.DataTextField = "BookType"; DropDownList1.DataValueField = "BookTypeid"; DropDownList1.DataBind(); DropDownList1.Ite..原创 2021-04-25 08:39:50 · 278 阅读 · 0 评论