Hello.
I have a blog that have several different blog types (recipe, image, news, standard). Each blog type has different formatting so it it has it's own page (RecipeView.aspx, ImageView.aspx, NewsView.aspx, StandardView.aspx). All the blogs are stored in a
blogs table with a blogtype field that's used to determine what kind of blog I view.
The problem comes when I link to a blog from the Default page or search page. I have to go and up and match the page with the corresponding blog type. Not a big deal, but I was debating creating a standard BlogView.aspx page that I could link to from all
sources, this page will take the passed in BlogID and redirect the user to the correctly formatted blog view page. This would make linking to a blog much simpler, but would create a bit more overhead.
Is this a horrible idea? Is there anything equivalent out there?
Thanks,
Bryan
Go to the complete details ...