html 将变量/参数传递给用户控件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 将变量/参数传递给用户控件相关的知识,希望对你有一定的参考价值。

//Main File with User control in it

<%@ Register TagName="Header" TagPrefix="uc" Src="~/usercontrolfile.ascx"%>
<uc:Header id="ucControlName" runat="server" EnableViewState="false" Paramater1="PassValue"/>

//Or you can pass from the Code Behind for main file
ucControlName.Paramater1 = "PassValue";

//User Control file
public string GetParamater1 = "";

public string Paramater1
    {
        set { GetParamater1 = value; }
        get { return GetParamater1; }
    }
    
//Now you can use "GetName" anywhere...

以上是关于html 将变量/参数传递给用户控件的主要内容,如果未能解决你的问题,请参考以下文章

html 将变量参数传递给包含

将 ListBox 控件对象传递给需要 ListBox 作为参数的函数

Process.Start - 将 html 代码作为参数传递给 exe

将参数传递给从 R 中的字符串调用的用户定义函数的最佳方法是啥?

将实例变量作为参数传递给同一类中的方法?

如何将视图输入参数传递给 @State 变量?