ASPX and Search Engines

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

With .aspx pages are there fields to enter the equivalent of meta tags and
meta descriptions that get picked up by the search engines. If so how do we
do this for each page in our web site?

Thanks in advance
 
Meta tags are simply rendered output from an asp.net page being executed
(requested). You can add the meta information to each page when you are
creating the page as free text. You can also build a meta engine using
ihttpmodules or user controls that adds the meta data dynamically at request
time, perhaps from some form of lookup table.

Heres a quick tip on it.
http://aspalliance.com/411
 
Back
Top