vote up 0 vote down star

I've written a Custom User Control which returns some user specific data. To load the Custom User Control I use the following line of code:

UserControl myUC = (UserControl).Load("~/customUserControl.ascx");

But how can I access string user inside the User Control myUC?

flag

Oh please reword. This doesn't make much sense. – Frank Krueger Dec 3 '08 at 8:12
Excuse me English is not my main language. Which part should I reword? – Philipp Küng Dec 3 '08 at 8:16

5 Answers

vote up 1 vote down check

Let's call your usercontrol "Bob"

If you Inherit from UserControl in Bob, then I guess it's safe to do this:

Bob b = (Bob).Load("~/customUserControl.ascx");

For the user part, I can't really follow what you want to do, is the "user" in the class were you create the "Bob" usercontrol and you want to set a property in the "Bob" usercontrol or is it the other way around?

For the first one you should create a property in your usercontrol.

class Bob : UserControl{
public string User { get; set;}
}

and then set it when after you create "Bob" instance.

b.User = theuser;
link|flag
vote up 0 vote down

You will need to cast the loaded control to the actual type and use its public property:

MyUserControl myUCTyped = (MyUserControl)myUC;
myUCTyped.ThePublicProperty = "some value";
link|flag
vote up 0 vote down

Suppose your custom user control's name is "MyUserControl"

Try this code:

MyUserControl myUC = (UserControl).Load("~/customUserControl.ascx") as MyUserControl;
string result = myUC.user;
link|flag
How did you do your casts? Can you paste some code here? – Leon Dec 3 '08 at 8:35
I made it the same way you suggested. But, because I want to load everything dynamically I'm not able put <%@ Register Src="~/customUserControl.ascx" TagName="MyUserControl" TagPrefix="myUC" %> at the top. And I thinks that's why I get an Error when I copy and paste your code. – Philipp Küng Dec 3 '08 at 8:48
Did you get any compilation or run time error? – Leon Dec 3 '08 at 8:56
Make sure your custom user control is derived from System.Web.UI.Control – Leon Dec 3 '08 at 9:02
vote up 0 vote down

Thanks, but how can you cast the User Control to the actual type?

Here's my Web Service code, which returns the user specific HTML generated via the user control.

Page page = new Page();
UserControl ctl = (UserControl)page.LoadControl("~/todo.ascx");
page.Controls.Add(ctl);
StringWriter writer = new StringWriter();
HttpContext.Current.Server.Execute(page, writer, false);

Now I only need to tell the user control who will see the output. But how can this be achieved?

link|flag
vote up 0 vote down

Thanks so far. My code is excactly the same as written above:

public partial class todo : System.Web.UI.UserControl
{
    private string mysecondteststring;
    public string setValue
    {
        get
        {
            return mysecondteststring;
        }
        set
        {
            mysecondteststring = value;
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        // my code
    }
}

But I'm not able to create an Instance of poll, in my Web Service code. Do I forget something?

--> Forgot to add the Reference to the .aspx Page, where the user control is loaded dynamically. It's working now with normal .aspx Pages. Example code can be found here

Does anyone of you know how user controls can be added in Web Services aswell, because the Reference Attribute isn't available there?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.