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 4022224
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:26:56+00:00 2026-05-20T10:26:56+00:00

I have an ascx which I want to load and cast from a class

  • 0

I have an ascx which I want to load and cast from a class sitting within App_Code. I can’t get it to work from the App_Code class, although I can get it to work from an aspx page.

The ASPX page technique works fine with the following code:

pc = LoadControl("enquirycapture.ascx");
((ASP.enquirycapture_ascx)pc).CustomProperty = customObject;

(Note: I have the following in the aspx page:)

<%@ Reference VirtualPath="~/enquirycapture.ascx" %>

However, when I try casting the control from within the App_Code class then it can’t ‘see’ the ascx class, and therefore I am unable to cast to it to set the custom properties(I can load it, but not cast it). I don’t know how to replicate the <% Reference…> thing from within the App_Code class. Anyone know how I can reference (and thus cast) my ascx from the App_Code class? Thanks.

  • 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-20T10:26:56+00:00Added an answer on May 20, 2026 at 10:26 am

    App_Code compiles to a seperate assembly that can’t reference types in a CodeFile.

    But you can add interface/base class to your App_Code folder that identifies the custom properties and methods that you intend to implement in your usercontrol:

    public class EnquiryCaptureBase : System.Web.UI.UserControl
    {
        public object CustomProperty { get; set; }
    }
    

    and then

    public partial class EnquiryCapture : EnquiryCaptureBase
    {
    
    }
    

    and finally somewhere in App_Code:

    pc = LoadControl("enquirycapture.ascx");
    ((EnquiryCaptureBase)pc).CustomProperty = customObject;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a control containing some text which I want to get from a
I have an ascx control which contains dropdownboxes I want to be able to
I have radGrid in .ascx page in which I want to find the control
Is there a way to have following ? CLASS ucComponent.ascx Component.cs and then within
I have made a basic ascx control which is just a panel with a
I have an asp:FormView on a control (in an ascx file) which is loaded
I have a UserControl which I have added to my web.config <add tagPrefix=BCF src=~/controls/MyMessageBox.ascx
For example, i have this ImageViewer.ascx UserControl: <div class=ImageTumbnails> <asp:ListView ID=ImageList runat=server ItemPlaceholderID=ItemContainer> <LayoutTemplate>
I have an ASP.NET user control (.ascx file). In this user control I want
I have created a web user control (MemberDetails.ascx) which is loaded dynamically on a

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.