上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: 在GridView中加入 CheckBox控件,想通过单击选中出现如下图所示效果: 具体做法是: 前台GV部份省掉。只加关键的CheckBox部份。 view plaincopy to clipboardprint?<asp:CheckBox ID="ItemCheckBox" oncheckedc 阅读全文
posted @ 2017-08-18 00:08 御不凡 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: <asp:GridView ID="gvYwAssign" runat="server" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="gvYwAssign_PageIndexChanging" DataSou 阅读全文
posted @ 2017-08-17 18:44 御不凡 阅读(248) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; using System.Data;using System.Data.SqlClient; namespace confirmBei 阅读全文
posted @ 2017-06-07 17:23 御不凡 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: 原因:access文件过大 解决:用压缩和修复把收缩一下access文件 报错截图如下: 阅读全文
posted @ 2017-06-06 17:59 御不凡 阅读(253) 评论(0) 推荐(0) 编辑
摘要: win10装回win7。安装文件解压到某盘根目录,然后 PE下把原来的系统盘格掉,再安装hdd,重启就好了 阅读全文
posted @ 2017-05-31 16:45 御不凡 阅读(197) 评论(0) 推荐(0) 编辑
摘要: select top 10 column1,column2,column3 from table1 where table1.id not in(select top 0 table1.id from table1 order by column1 asc) order by column1 asc 阅读全文
posted @ 2017-05-24 12:58 御不凡 阅读(2960) 评论(0) 推荐(0) 编辑
摘要: string aaa = "你好123"; Label1.Text = aaa.Length.ToString(); //结果5 Label2.Text = System.Text.Encoding.Default.GetBytes(aaa).Length.ToString(); //结果7 阅读全文
posted @ 2017-04-18 19:49 御不凡 阅读(25984) 评论(0) 推荐(0) 编辑
摘要: 安装时取消对兼容模式的勾选,重新安装就可以了。 或者加上 以管理员身份运行,兼容性设置,以管理员身份运行 阅读全文
posted @ 2017-03-09 21:03 御不凡 阅读(7865) 评论(0) 推荐(0) 编辑
摘要: 然后在代码页中写//上传图片if (UpFile.PostedFile != null){ HttpPostedFile mFile= UpFile.PostedFile; int fileSize = mFile.ContentLength; //得到文件大小 string exName = Sy 阅读全文
posted @ 2017-01-23 20:29 御不凡 阅读(5790) 评论(0) 推荐(0) 编辑
摘要: 解决方法:设置报表设置数据源时,不要放在!Page.IsPostBack中,直接写在pageload中就不会报错了 protected void Page_Load(object sender, EventArgs e) { DataTable dt = sqlHelp.SelectInfo(sql 阅读全文
posted @ 2017-01-03 16:11 御不凡 阅读(277) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页