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

你可能感兴趣的文章
jQuery Ajax 实例 全解析
查看>>
JS的解析与执行过程—全局预处理阶段之全局词法环境对象
查看>>
Django忘记管理员账号和密码的解决办法
查看>>
producer数据分发到多个partition
查看>>
.NET Framework
查看>>
Python ConfigParser模块
查看>>
【持续更新】最全Hexo个人博客搭建+主题优化+插件配置+错误分析
查看>>
Hello~! 我的blog
查看>>
UPDATE SELECT OUTPUT
查看>>
转:oracle驱动表
查看>>
Django模型层的多表操作(1)
查看>>
jmeter 多线程组间变量共享
查看>>
Phpstorm如何连接服务器
查看>>
Vim 插件的安装
查看>>
Configure WCF
查看>>
7-5
查看>>
用 Eclipse 开发 Android 应用程序
查看>>
geoserver扫盲 openlayers相关
查看>>
Hibernate入门二
查看>>
ASP.Net中使用XMLDataSource
查看>>