- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
请问如何获取gridview中按钮的文字或值?但我想从此 onrowcommand 中获取文本值,它使用 GridViewCommandEventArgs 作为其参数。
好像我使用的 onrowdatabound 是 (GridViewRowEventArgs),这让我很容易在 gridview 中获取 button.text
string example = ((Button)e.Row.FindControl("btnStop")).Text;
我想让 button.text 在 onrow 命令中执行 if else 循环。谁知道怎么做?
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" CellPadding="2" CellSpacing="2" HorizontalAlign="Center" PageSize="5" Width="133%" DataKeyNames="SurveyID" DataSourceID="SqlDataSource1"
AutoGenerateColumns="False" onrowcommand="stop_survey"
onrowdatabound="filter_select" onselectedindexchanging="selected"
>
代码隐藏
public void filter_select(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{....
((Button)e.Row.FindControl("btnStop")).Text = "Start";
}
}
public void stop_survey(object sender, GridViewCommandEventArgs e)
{
//i want to get the "btnStop" button text which is nested on the gridview.
}
我想获取 btnStop 文本,因为我想根据其文本使用不同的 sqlstatement(例如,开始或停止)问题是我不能在 stop_survey 中执行 e.Row。请指导我。
最佳答案
根据命令源行的引用创建 GridViewRow 的对象。
GridViewRow row = (GridViewRow)((LinkButton)e.CommandSource).NamingContainer;
但请记住,在上面的代码中,您使用哪种类型的对象控件来调用事件是 LinkButton。但是,如果您从简单按钮调用 Rowcommand 事件,那么您需要这样写:
GridViewRow row = (GridViewRow)((Button)e.CommandSource).NamingContainer;
创建行对象后,您可以使用 rowindex 从 Gridview 中简单地找到任何控件。
Label LabelEmail = (Label)GridView1.Rows[row.RowIndex].FindControl("LabelEmail");
您终于可以访问该控件的属性了。
LabelResult.Text = LabelEmail.Text;
同上 你也可以使用GridViewRow rowindex找到gridview的Datakeys。
int code = Convert.ToInt32(GridView1.DataKeys[row.RowIndex].Values[0].ToString());
关于c# - asp.net gridview onrowcommand -->( GridViewCommandEventArgs),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8464652/
使用 asp.net、c# 3.5 与 2008。 我有一个名为 gv1 的 aspx gridview,它具有一个工作的 c# 代码隐藏 onrowcommand 方法,当单击该行上的按钮时会调用该
下面给出了我的 GridView id,(来自应用程序的 Asp.net web) asp:GridView ID="grid" runat="server" AutoGenerateColumns
仅当 GridView 中有超过 1 行时,我才尝试在 GridView 上动态显示按钮和复选框。 ( View 是基于搜索用户的结果,因此行数是基于搜索结果的动态) 按钮和复选框的用途是允许我合并
请问如何获取gridview中按钮的文字或值?但我想从此 onrowcommand 中获取文本值,它使用 GridViewCommandEventArgs 作为其参数。 好像我使用的 onrowdat
我有一个包含很少控件的 gridview,我试图通过使用 FindControl 方法在 OnRowCommand 事件中获取这些控件,但它总是返回 null。 这是 GridView
我希望 GridView 的 OnRowCommand 事件不对 ErrorLinkButton 单击执行完整回发。所以我将控件包装在一个更新面板中,并为 OnRowCommand 添加了一个 A
我是一名优秀的程序员,十分优秀!