ASPX and Search Engines

N

niel

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
 
N

Neo Geshel

niel said:
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

ASPX pages are no different than regular HTML pages, except that they
contain server-side scripting that the server processes before the page
is sent to the client. As such, you put the meta tags into your ASPX
pages in the same way you would put them into HTML pages. That is,
between <head> and </head>

Now, if you were doing complex things, such as Master pages (with
ASP.NET 2.0) or User Controls (with ASP.NET 1.1, using them as glorified
SSI), then you would have a much more flexible method of adding meta
tags that *might* require asking such a question, depending on how
exotic a solution you were going for (such as programmatically adding
meta tag contents that are customized to the page being served up). But
other than that, an ASP.NET page is no different than a regular web page
in terms of adding meta tags.

I hope this helps.
...Geshel
--
***********************************************************************
* My reply-to is an automatically monitored spam honeypot. Do not use *
* it unless you want to be blacklisted by SpamCop. Please reply to my *
* first name at my last name dot org. *
***********************************************************************
“Anyone who believes in Intelligent Design (“creationismâ€) is just as
ignorant and ill-educated as someone who believes that the world is
flat, that the Sun circles the Earth or that there really is a tooth
fairy. Darwinism has an overwhelming foundation of evidence that can be
tested and reproduced. Intelligent Design, on the other hand, has no
evidence at all; not one single shred of testable proof. As such,
Intelligent Design is Religious Mythology, and has no right whatsoever
to be in our Science classrooms.†- 99.99+% of Scientists
***********************************************************************
Mignon McLaughlin once said that “A nymphomaniac is a woman [who is] as
obsessed with sex as the average man.†Unfortunately, since true
nymphomaniacs are so rare, this means that it takes an extraordinary
woman to keep up with an ordinary man.
***********************************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top