devxlogo

Access User Control’s Variable Inside an ASPX Page

Access User Control’s Variable Inside an ASPX Page

This tip provides a way to access the user control’s variables inside an ASP.NET Web page.

Assume that strVar is the variable declared in the user control’s code-behind file. To access the variable in the ASP.NET Web page called webform1.aspx, follow these two steps:

  1. Declare strVar as public in the user control’s code.
  2. Use the Register directive to register the user control in the Web page called webform1.aspx.
<%@ Register TagPrefix="UC" TagName="MyCon" src="webusercontrol1.ascx"%>

The following shows how to instantiate the user control:

This is the actual way to access the variable:

<%= mycon1.strVar %>
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist