c# gridview如何获取编辑行的控件

<EditItemTemplate><asp:TextBoxID="TextBox1"runat="server"Text='<%#Bind("number")%>'><... <EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("number") %>'></asp:TextBox>
</EditItemTemplate>

如何才能在编辑行时给TextBox1增加onchange(js事件)?
或者告诉我在编辑行时如何才能用FindControl方法找到TextBox1
展开
 我来答
stcxlmszz
2011-07-16 · TA获得超过348个赞
知道答主
回答量:434
采纳率:0%
帮助的人:0
展开全部
首先, 可以在GridView中增加一隐藏字段, 例如:

<asp:LinkButton ID="btnStatus" runat="server" CommandName="Action" Visible="false" CommandArgument="<%# ((GridViewRow)Container).RowIndex %>"></asp:LinkButton>

这里主要设置行的Index.
然后在GridView有一个RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = dgvPermitList.Rows[index];
Label lblLabel1 = (Label)row.FindControl(("lblLabel1"));
}
mansai
推荐于2016-11-03 · TA获得超过1123个赞
知道小有建树答主
回答量:402
采纳率:0%
帮助的人:535万
展开全部
在RowDataBound事件中添加代码
if (e.Row.RowState == DataControlRowState.Edit)
{
TextBox TextBox1= e.Row.FindControl("TextBox1") as TextBox;
TextBox1.Attributes.Add 省略...
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式