教学文库网 - 权威文档分享云平台
您的当前位置:首页 > 精品文档 > 学前教育 >

经典的GridView72种使用技巧(4)

来源:网络收集 时间:2026-08-22
导读: 5.GridView和CheckBox结合: 效果图: 后台代码: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebCo

5.GridView和CheckBox结合:

效果图:

后台代码: using System; using System.Data;

using System.Configuration; using System.Web;

using System.Web.Security; using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.SqlClient;

public partial class Default5 : System.Web.UI.Page {

//清清月儿http://blog.csdn.net/21aspnet SqlConnection sqlcon;

string strCon = \Source=(local);Database=北风贸易;Uid=sa;Pwd=sa\

protected void Page_Load(object sender, EventArgs e) {

if (!IsPostBack) {

bind(); } }

protected void CheckBox2_CheckedChanged(object sender, EventArgs e) {

for (int i = 0; i <= GridView1.Rows.Count - 1; i++) {

CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl(\Box1\

if (CheckBox2.Checked == true) {

cbox.Checked = true; } else {

cbox.Checked = false; } } }

protected void Button2_Click(object sender, EventArgs e) {

sqlcon = new SqlConnection(strCon); SqlCommand sqlcom;

for (int i = 0; i <= GridView1.Rows.Count - 1; i++) {

CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl(\Box1\

if (cbox.Checked == true) {

string sqlstr = \from 飞狐工作室 where 身份证号码='\+ GridView1.DataKeys[i].Value + \

sqlcom = new SqlCommand(sqlstr, sqlcon); sqlcon.Open();

sqlcom.ExecuteNonQuery(); sqlcon.Close(); } } bind(); }

protected void Button1_Click(object sender, EventArgs e)

{

CheckBox2.Checked = false;

for (int i = 0; i <= GridView1.Rows.Count - 1; i++) {

CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl(\Box1\

cbox.Checked = false; } }

public void bind() {

string sqlstr = \top 5 * from 飞狐工作室\ sqlcon = new SqlConnection(strCon);

SqlDataAdapter myda = new SqlDataAdapter(sqlstr, sqlcon); DataSet myds = new DataSet(); sqlcon.Open();

myda.Fill(myds, \ GridView1.DataSource = myds;

GridView1.DataKeyNames = new string[] { \身份证号码\}; GridView1.DataBind(); sqlcon.Close(); } }

前台主要代码:

CellPadding=\Font-Size=\BackColor=\BorderColor=\BorderStyle=\BorderWidth=\

户ID\SortExpression=\身份证号码\/>

Text=\全选\/>

6.鼠标移到GridView某一行时改变该行的背景色方法一: 效果图:

经典的GridView72种使用技巧(4).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.jiaowen.net/wendang/595508.html(转载请注明文章来源)
Copyright © 2020-2025 教文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:78024566 邮箱:78024566@qq.com
苏ICP备19068818号-2
Top
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)