Click here to Skip to main content
15,897,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to add a data and menus in master page dynamically also add sub aspx pages in under the particular master page..give some examples.
Posted
Comments
ZurdoDev 5-May-14 8:34am    
Dynamically? You have to write code to do it.

Control temp = new Control();
temp.ID = id;
temp.this = that;
etc, etc
Panel.Controls.Add(temp);

something along those lines. You'll just have to write the code.
bhaveshgediya 6-May-14 2:18am    
you can use place holder in master page, then dynamically generate data and place it in place holder

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900