up vote 0 down vote favorite
share [g+] share [fb]

I have created one aspx Page from that i need to access the property of Usercontrol.

Note : User control not registerd in a page, Its loaded Dynamically by using Loadcontrol.

Even i am wondering while i am typing Excact Class Name of User control, it can not be resolved. Then how can i create Object for user control.. without accessing Public class Can you please help me.

Thanks in Advance.

link|improve this question

61% accept rate
feedback

2 Answers

up vote 2 down vote accepted
Control c = LoadControl("~/Sample.ascx");
form1.Controls.Add(c);

EDIT: Registered user control's class name can used,

<%@ Register src="Sample.ascx" tagname="Sample" tagprefix="uc1" %>

CODE:

Sample c =(Sample) LoadControl("~/Sample.ascx");
c.SomeProperty="value";
form1.Controls.Add(c);
link|improve this answer
I dont want to register with in a aspx page, to reduce Overload of Page, Help? – karthik Sep 7 '09 at 15:20
1  
You should plan to create a custom control. – AVD Sep 8 '09 at 2:01
feedback

see following link to desing custom controls

http://msdn.microsoft.com/en-us/library/zt27tfhy.aspx

alternatively, if you dont want to register within aspx page, you can register globally in web.config

<system.web>
    <pages>
      <controls>
        <add assembly="My.Web.Controls"
                namespace="My.Web.Controls"
                tagPrefix="st" />
        <add src="~/Controls/MyControl.ascx"
                tagName="UserControl"
                tagPrefix="uc" />
      </controls>
    </pages>
</system.web>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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