如何在单击其他单元格时在文本框中获取gridview的单元格值?

时间:2012-05-30 09:45:57

标签: c# asp.net mysql

我有一个包含4列的网格视图:"用户ID","说明","显示密码","更改密码"

我在每个单元格的“更改密码列”中放置了一个图像按钮,在Gridview下面有3个文本框。

当我点击更改密码时,该特定行的用户ID应显示在文本框1中。

如何在带有C#的asp.net中执行此操作,后端是MySql DB服务器?

2 个答案:

答案 0 :(得分:1)

我的偏好是使用CommandArgument属性并将click事件的方法直接分配给后面的aspx代码中的按钮:

<asp:Button ID="btnChangePassword" CommandArgument='<%# Eval('UserID') %>' OnClick="MyEventMethod" />

然后在后面的代码中你将有一个方法来处理它:

public void MyEventMethod(object sender, EventArgs e)
{
    Button btn = (Button)sender;
    this.TextBox1.Text = btn.CommandArgument;
}

另一种方法是使用JavaScript(以避免回发)和onClientClick属性。在gridview上方的某个位置,您可以使用一种方法来处理此任务。

<script type="text/javascript">
    // Gets the actual reference to the textbox in javascript
    // using the client id
    function SetTextBoxUserID(userid)
    {
        var textbox1 = document.getElementById('<%= this.TextBox1.ClientID %>');
        textbox1.value = userid;
    }
</script>

然后控件看起来像:

<asp:Button ID="btnChangePassword" OnClientClick='SetTextBoxUserID(<%# "'" + Eval("UserID") + "'" %>)' />

答案 1 :(得分:0)

将“更改密码”列更改为“超链接”字段。在“数据”部分中该列的属性中,您可以看到DataNavigateUrlFields属性。将其设置为“用户ID”。然后在DataNavigateUrlFormatString属性中设置如下相同的页面

~/User.aspx?UserId={0}

然后在页面加载事件中编写以下代码

String userId= Request["UserId"];
        if (!string.IsNullOrEmpty(userId))
            TextBox1.Text = userId;

这可能不是最好的拍摄。但这可能是一些解决方法