20151224001 GridView 多按钮的各种使用方法
<asp:GridView ID="GridView1"
runat="server" AllowPaging="True" AutoGenerateColumns="False"
BackColor="#78C7EB" BorderColor="#78C7EB" BorderWidth="1px"
CellPadding="3" CellSpacing="2" DataKeyNames="ID"
Height="50px" Width="810px" style="left: 3px; top: 3px"
OnPageIndexChanging="GridView1_PageIndexChanging"
OnRowDataBound="GridView1_RowDataBound"
Font-Size="Large" PageSize="5"
onselectedindexchanged="GridView1_SelectedIndexChanged"
onrowcommand="GridView1_RowCommand" onrowdeleting="GridView1_RowDeleting">
<FooterStyle BackColor="#F7DFB5" ForeColor="#46434F" Font-Bold="False" />
<RowStyle BackColor="#EDF6FA" ForeColor="#46434F" />
<Columns>
<asp:CommandField HeaderText="查看" ShowSelectButton="True" SelectText="查看" >
<HeaderStyle BackColor="#4B9D1A" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="38px" ForeColor="#003300" />
</asp:CommandField>
<asp:CommandField DeleteText="变更" HeaderText="变更" ShowDeleteButton="True">
<HeaderStyle BackColor="#4B9D1A" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="38px" ForeColor="#CA0ED3" />
</asp:CommandField>
<asp:ButtonField ButtonType="Button" Text="取消" HeaderText="取消"
CommandName="b_cancel">
<ControlStyle ForeColor="#800010" />
<HeaderStyle BackColor="#4B9D1A" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="38px" ForeColor="#CA0ED3" />
</asp:ButtonField>
<asp:BoundField DataField="ID" HeaderText="编号" ReadOnly="True"
SortExpression="ID" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="28px" />
</asp:BoundField>
<asp:BoundField DataField="M_Title" HeaderText="会议主题" SortExpression="M_Title" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="160px" />
</asp:BoundField>
<asp:BoundField DataField="M_Room" HeaderText="会议室" SortExpression="M_Room" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="60px" />
</asp:BoundField>
<asp:BoundField DataField="M_Chairman" HeaderText="主持人"
SortExpression="M_Chairman" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="60px" />
</asp:BoundField>
<asp:BoundField DataField="M_S_Time" HeaderText="开始时间"
SortExpression="M_S_Time" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="80px" />
</asp:BoundField>
<asp:BoundField DataField="M_E_Time" HeaderText="结束时间"
SortExpression="M_E_Time" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="80px" />
</asp:BoundField>
<asp:BoundField DataField="M_Person" HeaderText="与会人"
SortExpression="M_Person" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="100px" />
</asp:BoundField>
<asp:BoundField DataField="M_Operator" HeaderText="预约人"
SortExpression="M_Operator" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="60px" />
</asp:BoundField>
<asp:BoundField DataField="M_Operator_Date" HeaderText="预约时间"
SortExpression="M_Operator_Date" >
<HeaderStyle BackColor="#34A7DC" BorderColor="#336699" BorderStyle="Double"
BorderWidth="1px" Font-Size="Medium" />
<ItemStyle HorizontalAlign="Center" BorderWidth="1px"
Font-Size="Small" BorderColor="#34A7DC" Width="80px" />
</asp:BoundField>
</Columns>
<PagerStyle ForeColor="#EDF6FA" HorizontalAlign="Center" Font-Bold="True"
Font-Italic="False" Font-Names="Arial Black" Font-Overline="False"
Font-Size="Medium" Font-Underline="False" Height="28px" />
<SelectedRowStyle BackColor="#4B9D1A" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#EDF6FA" Font-Bold="True" ForeColor="White"
Font-Size="Small" Height="38px" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
******************************************************************************************************
protected void databind()
{
P_ht.H_data P_data = new P_ht.H_data();
P_data.sql_text1 = Str_sql;
P_data.select_tables();
DataSet1 = P_data.DataSet8;
Session["session_table"] = P_data.DataSet8;
this.GridView1.DataSource = DataSet1;
this.GridView1.DataBind();
}
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
this.DataSet2 = new System.Data.DataSet();
this.DataSet2 = (DataSet)Session["session_table"];
this.GridView1.DataSource = this.DataSet2;
this.GridView1.DataBind();
}
//
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
int i;
//执行循环,保证每条数据都可以更新
for (i = -1; i < GridView1.Rows.Count; i++)
{
//首先判断是否是数据行
if (e.Row.RowType == DataControlRowType.DataRow)
{
//当鼠标停留时更改背景色
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#bcbf56'");
//当鼠标移开时还原背景色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
}
}
if (e.Row.RowType == DataControlRowType.DataRow)
{
//Button b = e.Row.Cells[0].Controls[0] as Button;
Button b = e.Row.Cells[2].Controls[0] as Button;
b.Attributes.Add("onclick", "if(confirm('你确认要取消选中的会议预约吗?')){ __doPostBack('GridView1','$" + e.Row.RowIndex + "')}else{return false;}");
}
}
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
//GridView g = (e.CommandSource as GridView);
////Label1.Text = "你选择的行 ID = " + g.DataKeys[Convert.ToInt32(e.CommandArgument)].Value;
//if (Convert.ToInt32(g.DataKeys[Convert.ToInt32(e.CommandArgument)].Value) != null)
//{
// if (Convert.ToInt32(g.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString()) > 0)
// {
// ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
// scriptManager.RegisterStartupScript(typeof(string), "", "alert('提示: " + g.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString() + " ');", true);
// }
//}
// 在RowCommand事件中通过CommandName来区分点击了哪个Button
GridView g = (e.CommandSource as GridView);
if (e.CommandName == "b_cancel")
{
ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
scriptManager.RegisterStartupScript(typeof(string), "", "alert('提示: " + g.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString() + " ');", true);
}
}
//
static string str_ca = "";
protected void btn_i_date1_Click(object sender, ImageClickEventArgs e)
{
LayerCC.Visible = !LayerCC.Visible;
str_ca = "1";
}
protected void btn_i_date2_Click(object sender, ImageClickEventArgs e)
{
LayerCC.Visible = !LayerCC.Visible;
str_ca = "2";
}
protected void Calendar1_SelectionChanged(object sender, EventArgs e)
{
if (str_ca == "1")
{
txt_date1.Text = Calendar1.SelectedDate.ToString("yyyy-MM-dd");
LayerCC.Visible = false;
}
if (str_ca == "2")
{
txt_date2.Text = Calendar1.SelectedDate.ToString("yyyy-MM-dd");
LayerCC.Visible = false;
}
}
protected void btn_i_confirm_Click(object sender, ImageClickEventArgs e)
{
//
string str_room = "";
if (Session["meeting_room"] == null)
{
str_room = "";
}
else
{
str_room = Session["meeting_room"].ToString();
}
//
dt1 = System.Convert.ToDateTime(txt_date1.Text.Trim() + " 00:00:00 ");
dt2 = System.Convert.ToDateTime(txt_date2.Text.Trim() + " 23:59:59 ");
//
databind();
}
//
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
GridViewRow row = GridView1.SelectedRow;
// Display the company name from the selected row.
// In this example, the third column (index 2) contains
// the company name.
//Message.Text = "You selected " + row.Cells[2].Text + ". ";
ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
scriptManager.RegisterStartupScript(typeof(string), "", "alert('提示: " + row.Cells[3].Text + " 查看 ');", true);
}
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
//string str_a = e.RowIndex.ToString();
//string str_a = e.Keys.ToString();
ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
scriptManager.RegisterStartupScript(typeof(string), "", "alert('提示: " + GridView1.Rows[e.RowIndex].Cells[3].Text.ToString().Trim() + " 编辑 ');", true);
}
}
20151224001 GridView 多按钮的各种使用方法的更多相关文章
- gridview获取当前行索引的方法
在用GridView控件时,我们经常会碰到获取当前行的索引,通过索引进行许多操作.例如,可以获得当前行某一个控件元素:设置某一元素的值等等. 下面结合实例介绍几种获得GridView当前行索引值的方法 ...
- Android中用GridView实现九宫格的两种方法(转)
Android中用GridView实现九宫格的两种方法http://blog.csdn.net/shakespeare001/article/details/7768455 1.传统办法:实现一个继承 ...
- android 之 ListView 里面嵌套 GridView 遇到的问题及其解决方法。
我们直接入主题.所有问题例子请参照下图 1,怎样使图片具有点击事件? 答: 解决方法: 在你的BaseAdapter里面不要设置下面这三个东西,然后再设置GridView的onItemClick. g ...
- 关于gridview里加按钮事件的总结
1. onrowcommand="GridView1_RowCommand1" 在gridview申明时的属性里要有,然后找到闪电,双击 还有要把那个按钮行模板化,就是箭头里面的t ...
- ListView 里面嵌套 GridView 遇到的问题及其解决方法。
我们直接入主题.所有问题例子请参照下图 1,怎样使图片具有点击事件? 答: 解决方法: 在你的BaseAdapter里面不要设置下面这三个东西,然后再设置GridView的onItemClick. g ...
- Android 防止按钮连续点击的方法(Button,ImageButton等)
防止按钮连续点击 其实实现很简单 共通方法 public class Utils { private static long lastClickTime; public static boolean ...
- BootStrap中按钮点击后被禁用按钮的最佳实现方法
//禁用button $('button').addClass('disabled'); // Disables visually $('button').prop('disabled', true) ...
- dev gridview表格按钮
固定列的位置 添加按钮控件位置,使用buttonEdit 添加按钮 按钮属性设置 按钮设置后的效果 //注册按钮事件 this.ribtndata.ButtonClick += new DevExpr ...
- (转)解决ScrollView嵌套ListView或者GridView导致只显示一行的方法
即动态获取ListView和GridView的高度 一.对于ListView ListView listview= new ListView(this); setListViewHeightBased ...
随机推荐
- java 笔记(1)-—— JVM基础,内存数据,内存释放,垃圾回收,即时编译技术JIT,高精度类型
1.java中5个存放数据的地方: (1).寄存器(Registers):位于CPU内部,是速度最快的存储区,但是数量和容量有限.在java中不能直接操作寄存器. (2).栈(Stack):栈位于通用 ...
- JAVA的String 类
String类 1.String对象的初始化 由于String对象特别常用,所以在对String对象进行初始化时,Java提供了一种简化的特殊语法,格式如下: String s = “abc”; s ...
- Swift游戏实战-跑酷熊猫 00 游戏预览
这个系列我们将要一起来做一个这样的游戏
- Latex技巧
文件.tex 文件打开 error reading 版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://www.blogbus.com/jzhao-logs/27226136 ...
- Codeforce Round #216 Div2
e,还是写一下这次的codeforce吧...庆祝这个月的开始,看自己有能,b到什么样! cf的第二题,脑抽的交了错两次后过了pretest然后system的挂了..脑子里还有自己要挂的感觉,果然回头 ...
- 强连通(hdu4635)最多增加几条单向边后满足最终的图形不是强连通
Strongly connected Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Other ...
- mvc3在window 7 iis7下以及 xp iis 5.1下的部署 ,asp.net MVC3无法打开项目文件E:/我们的项目/Project/HeatingMIS.Web/HeatingMIS.Web.csproj”。此安装不支持该项目类型。
今天,小白来总结一下我在is上部署mvc3 .net 网站的时候的过程和遇到的问题. 其实,mvc的网站的部署跟平常的网站的部署都是一样的,只是下面有一些需要注意的地方. 1.应用程序池采用集成模式( ...
- ScrollView属性总结
结构 继承关系 public class ScrollView extends FrameLayout java.lang.Object android.view.View android.view. ...
- C++之路起航——标准模板库(set)
set(集合):http://baike.baidu.com/link?url=cb68AB-3qfEK8RoaGHJFClb4ZiWpJfc32lPOLtaNUrdxntFC738zCZsCiUlf ...
- 建立一个Hello World级别的Spring项目
package com.sevenhu.domain; import org.springframework.context.ApplicationContext; import org.spring ...