In Asp.Net is it possible to dynamically switch which user control gets loaded with the .aspx page.
Depending on the type of news story I would like to switch which control gets loaded.
Thanks
melt
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Use LoadControl(), which is an instance method on the Page class. Then simply add it to a container’s Controls collection.
With “ph” being an asp:PlaceHolder control.