zoukankan
html css js c++ java
GridView中的RowCommand事件
也是在这次项目开发遇到的问题,本来放在一起的,后来发现太长了,所有就分开来写.
不过都是一些非常简单的问题,怕忘记,在这里作一个记录.
GridView模版列中Button取值问题:
<
asp:GridView
ID
="GridView1"
runat
="server"
DataKeyNames
="id"
AutoGenerateColumns
="False"
ShowHeader
="False"
Width
="100%"
OnRowDataBound
="GridView1_RowDataBound"
OnRowCommand
="GridView1_RowCommand"
>
<
Columns
>
<
asp:BoundField
DataField
="dept"
>
<
ItemStyle
Height
="20px"
Width
="10%"
HorizontalAlign
="Center"
/>
</
asp:BoundField
>
<
asp:BoundField
DataField
="deptnm"
>
<
ItemStyle
Width
="15%"
/>
</
asp:BoundField
>
<
asp:TemplateField
>
<
ItemTemplate
>
意见:
<
asp:TextBox
CssClass
="inputLine"
ID
="txtNotion"
runat
="server"
Width
="300px"
></
asp:TextBox
>
</
ItemTemplate
>
<
ItemStyle
Width
="40%"
/>
</
asp:TemplateField
>
<
asp:TemplateField
>
<
ItemTemplate
>
<
asp:HiddenField
ID
="hditem"
runat
="server"
Value
='<%#
Eval("item") %
>
' />
<
asp:RadioButtonList
ID
="rblidea"
runat
="server"
RepeatDirection
="Horizontal"
RepeatLayout
="Flow"
>
<
asp:ListItem
Value
="1"
>
同意
</
asp:ListItem
>
<
asp:ListItem
Value
="0"
>
不同意
</
asp:ListItem
>
</
asp:RadioButtonList
>
</
ItemTemplate
>
<
ItemStyle
HorizontalAlign
="Center"
Width
="20%"
/>
</
asp:TemplateField
>
<
asp:TemplateField
>
<
ItemTemplate
>
<
asp:Button
ID
="btnSubVise"
CommandName
="vise"
CommandArgument
='<%#
Eval("id") %
>
' runat="server" Text="提 交" CssClass="Sub_button2" />
<
input
id
="ReSubVise"
type
="reset"
value
="重 置"
class
="Sub_button2"
runat
="server"
/>
</
ItemTemplate
>
<
ItemStyle
HorizontalAlign
="Center"
Width
="15%"
/>
</
asp:TemplateField
>
</
Columns
>
</
asp:GridView
>
点击"提交"这个按钮,想取得"意见"这个TextBox的值.
protected
void
GridView1_RowCommand(
object
sender, GridViewCommandEventArgs e)
{
GridViewRow row
=
((Control)e.CommandSource).BindingContainer
as
GridViewRow;
int
index
=
row.RowIndex;
string
strid
=
e.CommandArgument.ToString();
if
(e.CommandName
==
"
vise
"
)
{
string
strid
=
GridView1.DataKeys[index].Value.ToString();
TextBox txtNotion
=
(TextBox)row.FindControl(
"
txtNotion
"
);
Response.Write(txtNotion.Text.ToString());
}
}
e.CommandArgument是取CommandArgument='<%# Eval("id") %>'的值.index是取GridView中DataKeyNames="id"的值.
查看全文
相关阅读:
Leetcode单链表反转
算法--二叉搜索树的python实现
云服务器(阿里和腾讯)搭建网络云盘Nextcloud
VGG16和集成模型(LeNet,CNN,Net均匀池化)比较
git与github
pyspider-崔庆才猫途鹰
给 Python 添加进度条 | 给小白的 tqdm 精炼实例!
@wraps 修饰器:让你的 Python 代码更加简短可爱 | 从简单实例来认识它
并发和并行 | Python中实现多线程 threading 和多进程 multiprocessing
Python格式化字符串字面值 | 被官方文档称之为『漂亮』的输出格式
原文地址:https://www.cnblogs.com/cnaspnet/p/669410.html
最新文章
数据库重组或者重建索引
关于html+ashx开发中几个问题的解决方法的感想和总结
关于html+ashx开发中几个问题的解决方法
fireBug引入JQuery,方便书写jq调试代码
C#利用Attribute实现简易AOP介绍
邮件发送
旋转字符串
设计包含min函数的栈
二叉树的先序,中序,后序遍历递归与非递归实现
第一篇博客:一个双色球游戏 、以及个人介绍
热门文章
二叉树的遍历-递归-非递归
机器学习-有监督-SVM
机器学习-有监督-逻辑回归
常见概率分布及python实现
matplotlib.pyplot画图笔记
03.
30.
风格迁移
迁移模型运行手写数字加法机(MNIST)
win10+ubuntu安装memcached
Copyright © 2011-2022 走看看