gridview模板中有button和label 开始时隐藏lable显示button 点击button后隐藏button并显示lable

不包含RowIndex的定义... 不包含RowIndex的定义 展开
 我来答
约翰约深Zt
2012-06-14 · TA获得超过410个赞
知道小有建树答主
回答量:102
采纳率:0%
帮助的人:95.7万
展开全部
一、 加入事件GridView RowCommand
二、给btn加属性 CommandArgument,CommandName

<asp:GridView ID="GridView1" runat="server" EnableModelValidation="True" OnRowCommand="GridView1_RowCommand">
<Columns>
<asp:TemplateField HeaderText=" 确认付款">
<ItemTemplate>
<asp:Label ID="LabIsPay" runat="server" Text="已付款" Visible="false"></asp:Label>
<asp:Button ID="ButIsPay" runat="server" Text="确认付款" CommandArgument='<%# Container.DataItemIndex %>' CommandName="showAndHide" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

后台
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);
if (e.CommandName=="showAndHide")
{
Label lbl = GridView1.Rows[index].FindControl("LabIsPay") as Label;
Button btn = GridView1.Rows[index].FindControl("ButIsPay") as Button;
lbl.Visible = true;
btn.Visible = false;
}

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
MiNice
2012-06-14 · 超过19用户采纳过TA的回答
知道答主
回答量:111
采纳率:0%
帮助的人:41.4万
展开全部
Button ButIsPay = (Button)NianDaiGridView.Rows[e.RowIndex].FindControl("ButIsPay");

ButIsPay.Visiable = false
同理:Label
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式