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 currently have an error catching script for all our PHP sites. This script
Currently i have a build process in place for all of our apps using
Hello I currently have this code checking if a cookie exists, it works all
I currently have a bunch of repositories like so IMyRepository IAnotherRepository They all inherit
I have users from all around the world using our system. Each of them
Currently we have implemented a repository pattern at work. All our repositories sit behind
We're currently using Crystal for all our reporting needs, and, for various reasons, we're
We currently have developed an application using WCF. Our clients make connections to different
Currently I have a UITabBarController with 4 items on it that all have associated
I need my application run in multiple screen resolutions. Currently I have specified all

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.