博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CommandName and CommandArgument
阅读量:5023 次
发布时间:2019-06-12

本文共 730 字,大约阅读时间需要 2 分钟。

ExpandedBlockStart.gif
ContractedBlock.gif
private
void
Page_Load(
object
sender, System.EventArgs e)
dot.gif
{
InBlock.gifButton bt
= new Button();
InBlock.gif bt.Text
= "new button";
InBlock.gif bt.Click
+= new System.EventHandler(Button1_Click);
InBlock.gif
InBlock.gif bt.CommandName
= "ddddd";
InBlock.gif bt.CommandArgument
= "CommandArguments";
ExpandedBlockEnd.gif}
None.gif
private
void
Button1_Click(
object
sender, System.EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif
dot.gif
{
InBlock.gif
string cdm = ((Button)(sender)).CommandArgument.ToLower();
InBlock.gif
string nowvalue = "";
InBlock.gif
string strcmdName = this.Button1.CommandName;
InBlock.gif
foreach(DataGridItem item in RecssDataGrid1.Items)
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif
InBlock.gif
foreach(Control control in item.Cells[1].Controls)
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif
if(control.GetType().ToString()=="System.Web.UI.WebControls.TextBox")
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif TextBox lb
= (TextBox)control;
InBlock.gif
InBlock.gif nowvalue
= lb.Text;
ExpandedSubBlockEnd.gif }
ExpandedSubBlockEnd.gif }
InBlock.gif
ExpandedSubBlockEnd.gif }
ExpandedBlockEnd.gif }

转载于:https://www.cnblogs.com/austinleng/archive/2005/04/21/142557.html

你可能感兴趣的文章
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>
吴裕雄 python 机器学习——数据预处理嵌入式特征选择
查看>>
Centos6.4安装JDK
查看>>
201521123069 《Java程序设计》 第4周学习总结
查看>>
线性表的顺序存储——线性表的本质和操作
查看>>
【linux】重置fedora root密码
查看>>
用swing做一个简单的正则验证工具
查看>>
百度坐标(BD-09)、国测局坐标(火星坐标,GCJ-02)和WGS-84坐标互转
查看>>
pig自定义UDF
查看>>
输入名字显示其生日,没有则让输入生日,做记录
查看>>
爬虫综合大作业
查看>>
Kubernetes 运维学习笔记
查看>>
并查集 经典 畅通工程
查看>>
Spark MLlib 之 Naive Bayes
查看>>
php修改SESSION的有效生存时间
查看>>
spring security 11种过滤器介绍
查看>>
Hibernate一对多、多对一关联
查看>>
一、记录Git使用中遇到的问题及解决方法
查看>>
学习网址
查看>>