Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6092209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:24:58+00:00 2026-05-23T12:24:58+00:00

We currently have all of our tracking / analytic code in a usercontrol (ascx).

  • 0

We currently have all of our tracking / analytic code in a usercontrol (ascx). We like this because, using our CMS, we can just drop the control on any page that needs tracking.

The issue is now it is possible for a user to inadvertently drop a control on a page that may already have it included. For example : We include the control on a master page – then again on a page that inherits from this master.

What would be the best way to insure the user control is used only once when rendering the page?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:24:59+00:00Added an answer on May 23, 2026 at 12:24 pm

    There is no way than to loop all controls and their parents/childs.

    For example:

    Public Module ExtensionMethods
    
        <Runtime.CompilerServices.Extension()> _
        Public Function FindControlRecursively(ByVal parentControl As System.Web.UI.Control, ByVal controlType As Type) As System.Web.UI.Control
    
            If parentControl.GetType = controlType Then
                Return parentControl
            End If
    
            For Each c As System.Web.UI.Control In parentControl.Controls
                Dim child As System.Web.UI.Control = FindControlRecursively(c, controlType)
                If child IsNot Nothing Then
                    Return child
                End If
            Next
    
            Return Nothing
    
        End Function
    
    End Module
    

    and you can check it so:

    If Not FindControlRecursively(Me.Page.Master, GetType(UC_Status)) Is Nothing Then
       'thow exception or whatever'
    End If
    

    Note: all untested

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a SQL Server 2005 database, and currently all our users are connecting
In our current database development evironment we have automated build procceses check all the
I currently have a source control folder in TFS with all of my source
I currently have a unittest.TestCase that looks like.. class test_appletrailer(unittest.TestCase): def setup(self): self.all_trailers =
All, I currently have two projects that are under SourceSafe that I am unable
All, I currently have my solution comprising of 2 Class librarys and a Web
I am currently trying to learn all new features of C#3.0. I have found
Currently, I am splitting all my tests by package (projects). So if I have
In our Smartclient app we currently use PostSharp to inject get/set code into auto
We currently use Auditing triggers to track all of our DB changes. In order

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.