Reputation: 45
How is this ASPX site constructed?
http://www.greatschools.org/california/plymouth/14685-County-Community-School/
I am building a similar site, but also a ASPX.NET noob.
I realize they have a MDB database, but how are hyperlinks from one page directed to such a SEO friendly URL?
What ASPX function(s) or tools should I be employing?
Any links to resources or tutorials very much welcome.
Upvotes: 1
Views: 150
Reputation: 5670
The heart of your question has to do with getting those SEO friendly URLs. That is accomplished using URL Rewriting, or some variant.
With Microsoft products, you can solve this at the IIS level, or at the ASP.NET level.
For the IIS level, there is already a Q&A that answers far better than I can here: mod_rewrite equivalent for IIS 7.0
For the ASP.NET level, check out ASP.NET Routing. You might be interested in learning more about, and doing tutorials for, ASP.NET MVC. (Clean URLs are very inherent to its architecture.)
I do also want to clarify something. That site (greatschools.org) is probably not driven by Microsoft products:
Those could certainly be twisted by a developer to mislead people as to the identity of the server, but that seems unlikely to me.
Upvotes: 2