Advertisement

01.24.2008 at 04:25AM PST, ID: 23107425
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.2

working with usercontrols dynamically

Asked by sagir in .NET Framework 2.x, Microsoft Visual C#.Net, Visual Studio

Tags:

Hi,

After switching to ASP.NET 2.0 and understanding the fact that each user control is not a known type as it created and hence the parent which adds the control dynamically can't edit it's properties (since it's not a type) I've figured a way to achieve normal work with user controls (which are added dynamically).

For now I just add a Class to the APP_CODE for each usercontrol which I add to my project and make this class inherit from System.Web.UI.UserControl. Lets say this (app_code) class is called _behindControl and the usercontrol's codebehind class is called usercontrols_behindControl. Then I set the ascx.cs (code behind of the usercontrol on the project - usercontrols_behindControl) to inherit from this _behindControl class.
Then I have to set abstract properties for each webcontrol on the usercontrol inside the _behindControl app_code class. and then override them in the usercontrols_behindControl class itself.

This way when I add the behindControl.ascx dynamically I can edit it's webcontrols (which are strongtyped because of the inheritance through a code inside app_code). This method works. Though it is very not comfortable to add all of this abstract properties for each webcontrol that I want to work with dynamically and then override these properties on the codebehind also.

My question is whether there is a better way to achieve working with usercontrols and modifying their webcontrols and public variables dynamically?

This is a sample code to the way I work now for a simple usercontrol containing a Label.

Thanks,
Sagi.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
//This is the codebehind of a certain usercontrol
 
public partial class UserControls_SomeControl : _SomeControl
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }
 
    public override Label myLabel1
    {
        get
        { return Label1; }
        set
        { Label1 = value; }
    }
}
 
//=================================================================
 
//This is the class inside the app_code folder
 
public abstract class _SomeControl: System.Web.UI.UserControl
{
	public _SomeControl()
	{
	}
 
    public abstract Label myLabel1
    {
        get;
        set;
    }
}
[+][-]01.29.2008 at 02:19AM PST, ID: 20766610

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.01.2008 at 02:42AM PST, ID: 20795519

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.01.2008 at 07:37AM PST, ID: 20797402

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.01.2008 at 07:57AM PST, ID: 20797620

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.01.2008 at 07:59AM PST, ID: 20797651

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.02.2008 at 03:36AM PST, ID: 20804043

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.04.2008 at 01:05AM PST, ID: 20812844

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.04.2008 at 05:36AM PST, ID: 20814096

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.04.2008 at 05:52AM PST, ID: 20814212

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.04.2008 at 06:22AM PST, ID: 20814489

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: .NET Framework 2.x, Microsoft Visual C#.Net, Visual Studio
Tags: asp.net c#
Sign Up Now!
Solution Provided By: hamidovt
Participating Experts: 1
Solution Grade: A
 
 
[+][-]02.04.2008 at 09:23AM PST, ID: 20816236

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.05.2008 at 06:10AM PST, ID: 20822911

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.05.2008 at 06:22AM PST, ID: 20823016

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.06.2008 at 06:50AM PST, ID: 20832328

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080924-EE-VQP-38 / EE_QW_2_20070628