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

你可能感兴趣的文章
flink源码编译(windows环境)
查看>>
dpkg 删除 百度网盘 程序
查看>>
服务器nginx安装
查看>>
std::nothrow
查看>>
rest-framework 分页器
查看>>
JQuery(一)安装&选择器 样式篇
查看>>
浏览器的DNS缓存查看和清除
查看>>
浏览器跨域问题
查看>>
HTML5 input控件 placeholder属性
查看>>
使用JAVA如何对图片进行格式检查以及安全检查处理
查看>>
html5实现移动端下拉刷新(原理和代码)
查看>>
iPhone开发中从一个视图跳到另一个视图有三种方法:
查看>>
pytho logging
查看>>
一个Java程序员应该掌握的10项技能
查看>>
c#英文大小写快捷键
查看>>
tpframe免费开源框架又一重大更新
查看>>
一.go语言 struct json相互转换
查看>>
什么是架构设计
查看>>
程序员学习能力提升三要素
查看>>
PHP 微信错误状态返回码说明
查看>>