zoukankan      html  css  js  c++  java
  • 获取用户控件中控件的ID

      用户控件中有个label控件,需要根据用户控件被引用后的ID值来未其赋值,请问如何才能在ASCX中得到引用后的用户控件ID
    这是来自某论坛的问题,不过标题Insus.NET有所更改。

    用户控件,将有可能被aspx或是masterPgae所应用。用户控件就是象打工仔,有可能被雇主聘用。每位打工仔都想赚钱,谁会给自己钱,也许不清楚;而雇主聘请人才或是投资,他只管付钱,付给谁也不一定清楚,因此Insus.NET在此创建一个接口,接口中有一个方法,是付钱。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;

    /// <summary>
    /// Summary description for IPayable
    /// </summary>
    namespace Insus.NET
    {
        public interface IPayable
        {
            void Pay(object value);
        }
    }

    打工仔(用户控件)没有钱用,就是去打工赚钱,也就是实作这个接口:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Insus.NET;

    public partial class InsusUserControl : System.Web.UI.UserControl,IPayable
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        public void Pay(object value)
        {
            this.Label1.Text = value.ToString();
        }
    }

    接下来,是什么样的老板聘请到你呢,如果是page的,也就是说,用户控件被拉至aspx页面中。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Insus.NET;

    public partial class _Default : System.Web.UI.Page
    {
           
        protected void Page_Load(object sender, EventArgs e)
        {
            // 在老板发工资时,他要知道有谁努力工作,才付薪水。
            IPayable uc = (IPayable)this.InsusUserControl1;
            uc.Pay("$15k");
        }
    }
  • 相关阅读:
    eclipse新建JSP页面报错:Multiple annotations found at this line解决方法
    yum 安装报错:*epel: mirrors.aliyun.comError: xzcompressionnot available
    shell脚本中定义路径变量出现的BUG
    Rsync 12种故障排查及思路
    定时清除 /var/log/massage 下的信息脚本文件
    企业集群架构之全网备份
    局域网的某个机器无法上网,的排错思路
    日志审计
    在VUE中使用富文本编辑器ueditor
    ABP框架使用 Swagger
  • 原文地址:https://www.cnblogs.com/insus/p/2769026.html
Copyright © 2011-2022 走看看