How can I share the same ordered list across multiple web pages without writing code behind? In this manner the information would only have to be updated in one location.
Share
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.
You can build an ASP.NET user control (http://msdn.microsoft.com/en-us/library/y6wb1a0e.aspx) so you can put your list there and use your user control on every page you need.
With this, you’ll have to alter your ordered list only in the user control, and this update will be available everywhere you’ve used the user control.