如何点击按钮获取gridview中的某一列的值!

 我来答
liyanly1120
2011-07-02 · TA获得超过380个赞
知道小有建树答主
回答量:213
采纳率:0%
帮助的人:134万
展开全部
要将gridview的列转换成模板。。。。
这样才方便取值
取值方法如下:
string id = (GridView1.Rows[e.RowIndex].FindControl("TextBox2") as TextBox).Text;
为什么是textbox
将gridview的列转换成模板以后,你在VS里面查看源代码,看你的gridview,就知道为什么了
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-07-06
展开全部
前台Gridview中:
<ItemTemplate>
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="MyCommandList" CommandArgument='<%#Eval("MacID")%>'
OnClientClick="return Show()" Text='<%# Eval("Day_StartShut")%>' ></asp:LinkButton>
</ItemTemplate>

后台方法:
if (e.CommandName == "MyCommandList")
{
LinkButton btn = (LinkButton)e.CommandSource;
GridViewRow row = (GridViewRow)btn.Parent.Parent;
string MacID = e.CommandArgument.ToString();

string sql = "SELECT MacID,Day_StartUp,Day_ShutDown,ABS(Day_StartUp-Day_ShutDown) AS Day_StartShut,col_date";
sql += " From DW10048 WHERE (col_date>='" + txtStartDay.Value + "' and col_date <='" + txtEndDay.Value + "') and macid = '" + MacID + "'";
sql +=" order by col_date desc";

DataTable dtlist = l_Help.GetDataTable(sql);

DataView view = dtlist.DefaultView;

GvList1.DataSource = view;
GvList1.DataBind();

}
另外,虚机团上产品团购,超级便宜
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yh114long
2011-07-01 · TA获得超过1459个赞
知道小有建树答主
回答量:189
采纳率:0%
帮助的人:265万
展开全部
this.GridView1.Rows[e.NewEditIndex].Cells[0].Text
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式