会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
菜鸟都不容易
导航
博客园
首页
新随笔
联系
订阅
管理
公告
gridview取行索引和行绑定
Posted on
2008-04-26 17:13
菜鸟都不容易
阅读(
131
) 评论(
0
)
编辑
收藏
举报
前台添加一模版列,里面添加一个Button
<
asp:TemplateField HeaderText
=
"
测试
"
>
<
ItemTemplate
>
<
asp:Button ID
=
"
Button1
"
CommandName
=
"
btn
"
runat
=
"
server
"
Style
=
"
position: relative
"
Text
=
"
Button
"
/>
</
ItemTemplate
>
</
asp:TemplateField
>
后台
protected
void
gv_Company_RowCommand(
object
sender, GridViewCommandEventArgs
e)
{
if
(e.CommandName
==
"
btn
"
)
{
int
index
=
Convert.ToInt32(e.CommandArgument);
DataKey key
=
this
.gv_Company.DataKeys[index];
string
tt
=
key.Value.ToString();
Response.Write(tt);
}
}
//
行数据绑定
protected
void
gv_Company_RowDataBound(
object
sender, GridViewRowEventArgs e)
{
if
(e.Row.RowType
==
DataControlRowType.DataRow)
{
Button bt
=
new
Button();
bt
=
(Button)e.Row.Cells[
6
].FindControl(
"
Button1
"
);
bt.CommandArgument
=
e.Row.RowIndex.ToString();
}
}
刷新页面
返回顶部
Powered by:
博客园
Copyright © 2024 菜鸟都不容易
Powered by .NET 9.0 on Kubernetes