asp.net 2.0: class file and .aspx page concept question
How can you get a class such as myClass.cs, to create a control such as a listbox that wil be used in a placeholder control on an .aspx page where the .aspx page has yet to be created so the class doesn't know about it yet. (e.g so there are no dependencies in the class)..
So if there are 10 .aspx pages, page1.aspx, page2.aspx, etc. , and each one has a control
Code:
<asp:placeholder ID="PlaceHolder1".....>
, how do you.
1. code a class, myClass.cs to create a listbox that will be placed on any one of the above .aspx pages but in the <PlaceHolder1> control. (I know how to do it with a user control e.g. default.aspx and default.aspx.cs -- but how to do it with default.aspx, default.aspx.cs AND myClass.cs).
2. instantiate this code from myClass.cs from the page1.aspx.cs, page2.aspx.cs, etc.
Thanks! 
__________________
I'm good at Dotnet,Database,Microsoft Technology,Java,Mail,Programming,Network,Software. ..
I'm Microsoft, I'm Sun, I'm Apple, I'm Oracle, I'm Google...want to know me??:www.itags.org/blogs/techer/
Last edited by htmlbasictutor; 07-30-2009 at 10:36 PM..
|