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

你可能感兴趣的文章
Redis的架构以及有关事务使用场景
查看>>
LeetCode Reverse Words in a String II
查看>>
安卓开发之调用摄像头、相册
查看>>
IT职场人生系列之十四:经验积累
查看>>
01011_怎么打开任务管理器?win7打开任务管理器方法
查看>>
用仿ActionScript的语法来编写html5——终篇,LegendForHtml5Programming1.0开源库件
查看>>
服务器端异步接受SOKCET请求
查看>>
联玛客(T 面试)
查看>>
JQ实现弹幕效果
查看>>
0909上机作业
查看>>
MAC 系统 各种操作
查看>>
FLV文件格式分析(附源码)
查看>>
基于VS Code创建Java command-line app
查看>>
JavaScript按特定条件截取字符串
查看>>
mysql explain key_len小结
查看>>
Windows 下安装 Kafka
查看>>
数据库设计经验谈
查看>>
在Windows Server 2008 R2上安装IIS服务
查看>>
Centos 7.4 yum方式安装nginx
查看>>
[C#] winform中的DataGridView的列宽设置(自动调整列宽)
查看>>