博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>
二叉树的遍历问题总结
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
css选择器
查看>>
爬取:中国大学排名
查看>>