访问用户控件ID在后面的用户控件代码中的aspx页面中使用

时间:2014-10-10 18:43:45

标签: asp.net c#-4.0 user-controls

我已注册用户控件并将其放在aspx页面中。

<%@ Register TagPrefix="uc1" TagName="Client" src="/PageLayout/Client.ascx"  %>
<uc1:Client id="IdClient1" runat="server"></uc1:Client>

我想访问id&#34; IdClient1&#34;在我的用户控件客户端的代码隐藏中。任何人都可以告诉我如何访问它?

由于

1 个答案:

答案 0 :(得分:2)

在后面的代码中,您可以使用VB中的Me.ID或C#中的this.ID来访问控件ID。

在VB.NET中

Me.ID

在C#中

this.ID