免费邮箱 |加入收藏 | 会员中心 | 我要投稿 | RSS
您当前的位置:首页 > .NET专区 > ASP.NET技巧

浅解ASP.NET控件开发基础之复合控件事件处理

时间:2011-05-16 19:57:22  来源:站内  作者:潘春会
void Button1_Click(object sender, EventArgs e)
  • {
  • Label1.Text = "你点击了左按钮";
  • }
  •  
  • protected void Button2_Click(object sender, EventArgs e)
  • {
  • Label1.Text = "你点击了右按钮";
  • }
  •  
  • protected void btn_command(object sender, CommandEventArgs e)
  • {
  • switch (e.CommandName)
  • {
  • case "left":
  • Label2.Text = "你点击了左按钮";
  • break;
  • case "right":
  • Label2.Text = "你点击了右按钮";
  • break;
  • }
  • }
  •  
  • protected void btn2_command(object sender, CommandEventArgs e)
  • {
  • switch (e.CommandName)
  • {
  • case "left":
  • Button1_Click(this, e);
  • break;
  • case "right":
  • Button2_Click(this, e);
  • break;
  • }
  • }
  • ﹤/script﹥
  •  
  • ﹤html xmlns="http://www.w3.org/1999/xhtml"
  • ﹤head runat="server"
  • 来顶一下
    返回首页
    返回首页
    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表
    推荐资讯
    如何找出DHCP地址池里未使用的IP地址
    如何找出DHCP地址池里
    国内常用的DNS列表
    国内常用的DNS列表
    Linux邮件服务器软件比较
    Linux邮件服务器软件比
    学用纯CSS打造可折叠树状菜单
    学用纯CSS打造可折叠树
    相关文章
    栏目更新
    栏目热门