GirdView选择行

页面运行时,GirdView显示数据库查询结果,有用户名、部门、职务,现在要选择GirdView中的一行,选择后自动把这行显示的用户名在Label中显示出来,怎么实现,最... 页面运行时,GirdView显示数据库查询结果,有用户名、部门、职务,现在要选择GirdView中的一行,选择后自动把这行显示的用户名在Label中显示出来,怎么实现,最好给具体代码,谢谢!
就显示选择的那行的用户名就行
展开
 我来答
咖酷科技
2010-05-11
知道答主
回答量:18
采纳率:0%
帮助的人:14.3万
展开全部
try: 放一个hidden,一个button,display = "none ";
再放一个label,Visible=false;
在rowbound事件中.
e.Row.Attribute.Add( "onclick ", "SetIndex( "+e.Row.ItemIndex+ ") ");
脚本
function SetIndex (i)
{
document.getElementById( "hidIndex ").value = i; document.getElementById( "btnSetIndex ").click();
}
后台事件
btnSetIndex_Click {
this.GridView1.SelectedIndex = ConvertToIn32(this.hidIndex.value);
//之后你就可以根据你选中行 随意找出你的控件,如label了
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ZESTRON
2024-09-04 广告
表面污染分析包括评估表面上存在的颗粒、残留物或物质。通过利用显微镜、光谱学和色谱法等技术,分析人员可以识别和表征污染物,以确定其成分和来源。这种分析在电子、制药和制造等各个行业中至关重要,以确保产品质量、性能和安全性。了解表面污染有助于实施... 点击进入详情页
本回答由ZESTRON提供
淘小子爱学习
2010-05-11 · 教师备课资源、学生学习资源
淘小子爱学习
采纳数:60 获赞数:34

向TA提问 私信TA
展开全部
行选定事件
label.text=GridView1.SelectedRow.Cells[ 用户名所在的列]的值;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tanghuawei
2010-05-11 · TA获得超过209个赞
知道小有建树答主
回答量:340
采纳率:0%
帮助的人:280万
展开全部
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton _singleClickButton = (LinkButton)e.Row.Cells[0].Controls[0];
// Get the javascript which is assigned to this LinkButton
string _jsSingle = ClientScript.GetPostBackClientHyperlink(_singleClickButton, "");

// Add events to each editable cell
for (int columnIndex = 0; columnIndex < e.Row.Cells.Count; columnIndex++)
{
// Add the column index as the event argument parameter
string js = _jsSingle.Insert(_jsSingle.Length - 2, columnIndex.ToString());
// Add this javascript to the onclick Attribute of the cell
e.Row.Cells[columnIndex].Attributes["onclick"] = js;
// Add a cursor style to the cells
e.Row.Cells[columnIndex].Attributes["style"] += "cursor:pointer;cursor:hand;";
}
}
}

protected void GridView_RowCommand(object sender, GridViewCommandEventArgs e)
{
GridView _gridView = (GridView)sender;
// Insert data if the CommandName == "Insert"
// and the validation controls indicate valid data...
switch (e.CommandName)
{
case ("SingleClick"):
// Get the row index
int _rowIndex = int.Parse(e.CommandArgument.ToString());
_gridView.SelectedIndex = _rowIndex;
//你的Label
Label.Text = gvLoading.Rows[_rowIndex].Cells[你的用户名所在列索引].Text;
break;
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式