I've got a layout coded in html, but I need to turn it into ASP. Does anybody know if there's a way to do something similar to PHP include except with ASP instead? And also how to create a piece of code that allows people to just change the content without having to touch the html codes in the background?
Make one master page and paste the code of the layout there,( things like header,menu, sidebar, footer) paste content place holder where you want content of diff. pages.( may be in between header and footer)
Then include masterpage in diff. pages (which will contain the content like "about us").
Oh wow, it's been a while. I've been so busy I haven't been back here. But thanks guys. I never got around to finishing what I started when I asked this question (I was flooded with exams) but, thanks!
@box I was supposed to create a site that would run a server that didn't support PHP.
If so check into Master Pages. You can create a layout with a content holder were you could put your content that changes from page to page would go.
You can do the following in classic ASP, which is similar to php includes:
<!--#include file="urfile.asp"-->
Then include masterpage in diff. pages (which will contain the content like "about us").
@box I was supposed to create a site that would run a server that didn't support PHP.