摘要: <asp:Repeater ID="rptList" runat="server" onitemdatabound="rptList_ItemDataBound" > <HeaderTemplate> <table width="100%" border="0" cellspacing="0" ce 阅读全文
posted @ 2024-05-15 13:50 请叫我七哥 阅读(1) 评论(0) 推荐(0) 编辑
摘要: checkboxlist绑定数据方法 1.把数据绑定到CheckBoxList中 特别要注意加载顺序 protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { SqlConnection con = 阅读全文
posted @ 2024-05-13 19:53 请叫我七哥 阅读(1) 评论(0) 推荐(0) 编辑
摘要: function formatDate(date){ let year = date.getFullYear(); let month = date.getMonth()+1; let day = date.getDate(); month = month < 10 ?'0'+ month : mo 阅读全文
posted @ 2024-05-01 14:05 请叫我七哥 阅读(3) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Syste 阅读全文
posted @ 2024-04-24 12:52 请叫我七哥 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/alibai/p/3553657.html 以年月为条件查询,select * from table where year(q_date)='2024' and month(kq_date)='02' 阅读全文
posted @ 2024-01-04 18:02 请叫我七哥 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 教程 https://www.runoob.com/highcharts/highcharts-tutorial.html 安装 Highcharts Highcharts 安装可以使用以下两种方式: 1、访问 highcharts.com 下载 Highcharts 包。 2、使用官方提供的 CD 阅读全文
posted @ 2023-06-24 22:08 请叫我七哥 阅读(8) 评论(0) 推荐(0) 编辑
摘要: //删除功能 function Del_user(userid) { //弹出询问信息窗口 parent.dialog({ title: '提示', content: "确定删除此条信息?", okValue: '确定', width: '250px', height: '120px', ok: f 阅读全文
posted @ 2023-06-10 06:57 请叫我七哥 阅读(64) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Globalization; namespace DTcms.Common { /// <summar 阅读全文
posted @ 2023-06-06 21:00 请叫我七哥 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 复制内容到剪切板分两种情况,一种是从页面已有的可选元素中选中内容进行复制,一种是将Javascript代码中的字符串直接复制到剪切板。复制页面元素选中内容 html代码: <input type="textarea" id="txt" /> <button onclick="copy()">复制</ 阅读全文
posted @ 2023-06-06 20:59 请叫我七哥 阅读(3622) 评论(0) 推荐(0) 编辑
摘要: string msbox = "<script>dialog({title: '修改成功',content:'修改成功', width: '180px',height: '100px',okValue: '确定',ok: function () {"; msbox += " document.loc 阅读全文
posted @ 2023-03-27 20:55 请叫我七哥 阅读(80) 评论(0) 推荐(0) 编辑