HTML source unacessable

G

Guest

I have noticed on a lot of web sites that the HTML source cannot be viewed,
either by using the right-click method, or the 'view source' option in the
browser menu bar. Is this a feature you have to buy a program to get, or an
HTML command you can place on a page? Either way, could someone tell me the
program or the HTML to use? Also, can someone tell me how to use a
'redirect' command so one page automatically goes to another when the first
page is selected in a search? Either one of these would be helpful, as I
have a lot of pages that are just text for a search engine, and would like
others to be able to simply view the final destination page rather than
having to click on a link to the page. Using a hidden field is an option,
but really increases the pages loading time, and I am looking for other
options.
 
T

Trevor L.

Tat said:
I have noticed on a lot of web sites that the HTML source cannot be
viewed, either by using the right-click method, or the 'view source'
option in the browser menu bar. Is this a feature you have to buy a
program to get, or an HTML command you can place on a page? Either
way, could someone tell me the program or the HTML to use? Also, can
someone tell me how to use a 'redirect' command so one page
automatically goes to another when the first page is selected in a
search? Either one of these would be helpful, as I have a lot of
pages that are just text for a search engine, and would like others
to be able to simply view the final destination page rather than
having to click on a link to the page. Using a hidden field is an
option, but really increases the pages loading time, and I am looking
for other options.

To suppress the right-click uses a bit of JS. I am not sure how people set
it up so that view source doesn't work.

But the experts here say that regadles of these methods, you will find the
HTML code in your cache. You just have to know the name of the folder the
cache is stored in. For IE6, it should be %USERPROFILE%\Local
Settings\Temporary Internet Files\ I am, told
Look for the name of the HTML as in the address bar.

For a redirect,
<html>
<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="2; url=http://www.new.com/new/new.htm">
<!-- AN alternative
<script>
top.location.href="./xxx"
</script>
-->
</head>
<body>
<p>This page has moved. Please click
<a href="http://www.new.com/new/new.htm">here</a>
if the new page doesn't appear in 2 seconds.</p>
</body>
</html>

The parameter 2 in content=" is the number of seconds. Set it to zero for
an immediate redirect
 
G

Guest

Thank you Trevor. I do appreciate the info. on the redirect. I will try and
paste the HTML on the necessary text page, and redirect to the actual page I
want viewed on my web, so hopefully all the 'garbage' text for the search
engines won't even be seen, and the page won't take all day to load because
of the hidden layer method I am using now.

Thank you again.
 
R

Rob Giordano \(Crash\)

garbage text for search engines is called "stuffing" which will have the
opposite effect of getting you more hits, as search engines will penalize
you for stuffing.


| Thank you Trevor. I do appreciate the info. on the redirect. I will try
and
| paste the HTML on the necessary text page, and redirect to the actual page
I
| want viewed on my web, so hopefully all the 'garbage' text for the search
| engines won't even be seen, and the page won't take all day to load
because
| of the hidden layer method I am using now.
|
| Thank you again.
|
| "Trevor L." wrote:
|
| > Tat wrote:
| > > I have noticed on a lot of web sites that the HTML source cannot be
| > > viewed, either by using the right-click method, or the 'view source'
| > > option in the browser menu bar. Is this a feature you have to buy a
| > > program to get, or an HTML command you can place on a page? Either
| > > way, could someone tell me the program or the HTML to use? Also, can
| > > someone tell me how to use a 'redirect' command so one page
| > > automatically goes to another when the first page is selected in a
| > > search? Either one of these would be helpful, as I have a lot of
| > > pages that are just text for a search engine, and would like others
| > > to be able to simply view the final destination page rather than
| > > having to click on a link to the page. Using a hidden field is an
| > > option, but really increases the pages loading time, and I am looking
| > > for other options.
| >
| > To suppress the right-click uses a bit of JS. I am not sure how people
set
| > it up so that view source doesn't work.
| >
| > But the experts here say that regadles of these methods, you will find
the
| > HTML code in your cache. You just have to know the name of the folder
the
| > cache is stored in. For IE6, it should be %USERPROFILE%\Local
| > Settings\Temporary Internet Files\ I am, told
| > Look for the name of the HTML as in the address bar.
| >
| > For a redirect,
| > <html>
| > <head>
| > <title>Redirecting...</title>
| > <meta http-equiv="refresh" content="2;
url=http://www.new.com/new/new.htm">
| > <!-- AN alternative
| > <script>
| > top.location.href="./xxx"
| > </script>
| > -->
| > </head>
| > <body>
| > <p>This page has moved. Please click
| > <a href="http://www.new.com/new/new.htm">here</a>
| > if the new page doesn't appear in 2 seconds.</p>
| > </body>
| > </html>
| >
| > The parameter 2 in content=" is the number of seconds. Set it to zero
for
| > an immediate redirect
| > --
| > Cheers,
| > Trevor L.
| > Website: http://tandcl.homemail.com.au
| >
| >
| >
 
G

Guest

Thank you for the info Rob, but that raises another question.
Some sties use a 'site map', which is basically hundreds, or even thousnads
of words liting the items they sell.
One of my pages is for auto parts, and I have about 12 suppliers for both
foreign and domestic cars.
To cover everything would take over 20,000 words, and I have reduced it to
just over 6,000.
Now for the question. If someone types in this search:
1928 Ford Model T front drop axle chrome plated with aftermarket disc brake
kit, wouldn't each of those words need to appear as text somewhere on a page
to match the search?
My goal is for someone doing the search to see whether the EXACT item they
are looking for is either available or not from one of my suppliers, and if
they click on my site from the search, an automotive home page opens rather
than have a page open with nothing but text, including the words they used in
the search.
I'm also an old hot rodder, so I have an idea of how someone like me will
enter a search. Once we finally discover the web (many of my friends still
use magazines or make phone calls all over the country), we can get pretty
specific in our searches, and get frustrated quickly when 130,000 plus
results appear, each with just a couple of words matching what we entered in
our search.
I'm new to this, and I'm building my site from the perspective of what I
want to see when I do a search, so I will appreciate all the advise and
suggestions I can get from everyone.
Thank you again, and I look forward to any and all replies.
 
F

Funkadyleik Spynwhanker

Tat said:
I have noticed on a lot of web sites that the HTML source cannot be viewed,
either by using the right-click method, or the 'view source' option in the
browser menu bar. Is this a feature you have to buy a program to get, or
an
HTML command you can place on a page? Either way, could someone tell me
the
program or the HTML to use? Also, can someone tell me how to use a
'redirect' command so one page automatically goes to another when the
first
page is selected in a search? Either one of these would be helpful, as I
have a lot of pages that are just text for a search engine, and would like
others to be able to simply view the final destination page rather than
having to click on a link to the page. Using a hidden field is an option,
but really increases the pages loading time, and I am looking for other
options.

It's cheap javascript or obfusication (like starting the HTML down after 400
blank lines) that doesn't work.

Only inexperienced persons are stopped by such things. Anybody that wants a
site, can get it.

(Viewing a site means downloading it, which means the user will always be
able to grab a copy if they want.)

Use watermarks on your images, or more practically stop worrying so much
about what others may do.
 
K

Kathleen Anderson [MVP - FrontPage]

Tat said:
I have noticed on a lot of web sites that the HTML source cannot be viewed,
either by using the right-click method, or the 'view source' option in the
browser menu bar.

This can happen when your browser cache is full - empty it: open Internet
Explorer and click Tools > Internet Options > Delete Files


--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
FrontPage Support: http://www.frontpagemvps.com/
 
G

Guest

Thank you for the reply.
I'm more curious than worried. As I said, I'm new to this and I am trying
to learn as much as I can. I just think the redirect and not being able to
view source is a usable function I would like to incorporate into some areas
of the site I'm building, and I want to make sure something I do, or don't
do, such as listing too much information, will help and not hurt my site.
I value everyones opinion and suggestion, as I learned long ago it is easier
to learn from other's mistakes than to make them on my own.

Thank you again for your reply.
 
T

Tom Willett

Here is some additional reading material:
How do I stop people from downloading my graphics or code?

http://continue.to/hope

http://www.digitalmidget.com/help/noclick/index.php

http://www.jamesshuggins.com/h/web1/how_do_i_stop_downloading.htm

http://www.jimcosoftware.com/protect.aspx
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| Thank you for the reply.
| I'm more curious than worried. As I said, I'm new to this and I am trying
| to learn as much as I can. I just think the redirect and not being able
to
| view source is a usable function I would like to incorporate into some
areas
| of the site I'm building, and I want to make sure something I do, or don't
| do, such as listing too much information, will help and not hurt my
site.
| I value everyones opinion and suggestion, as I learned long ago it is
easier
| to learn from other's mistakes than to make them on my own.
|
| Thank you again for your reply.
|
| "Funkadyleik Spynwhanker" wrote:
|
| >
| > | > >I have noticed on a lot of web sites that the HTML source cannot be
viewed,
| > > either by using the right-click method, or the 'view source' option in
the
| > > browser menu bar. Is this a feature you have to buy a program to get,
or
| > > an
| > > HTML command you can place on a page? Either way, could someone tell
me
| > > the
| > > program or the HTML to use? Also, can someone tell me how to use a
| > > 'redirect' command so one page automatically goes to another when the
| > > first
| > > page is selected in a search? Either one of these would be helpful,
as I
| > > have a lot of pages that are just text for a search engine, and would
like
| > > others to be able to simply view the final destination page rather
than
| > > having to click on a link to the page. Using a hidden field is an
option,
| > > but really increases the pages loading time, and I am looking for
other
| > > options.
| >
| > It's cheap javascript or obfusication (like starting the HTML down after
400
| > blank lines) that doesn't work.
| >
| > Only inexperienced persons are stopped by such things. Anybody that
wants a
| > site, can get it.
| >
| > (Viewing a site means downloading it, which means the user will always
be
| > able to grab a copy if they want.)
| >
| > Use watermarks on your images, or more practically stop worrying so much
| > about what others may do.
| >
| >
| >
 
G

Guest

To Tom & Kathleen

Thank you both very much for the information you provided. I greatly
appreciate it, and all the positive feedback I have been getting thus far.
Even the negative feedback I have read in past posts from others has been
helpful when applied in the proper context, and I value everything people
have been telling me, and everyone else that have questions.

Thank you both again.
 
R

Rob Giordano \(Crash\)

You've got some more answers in your more recent posting, but let me add...
You'd probably be much better off composing a few concise paragraphs
describing what you intend to do/sell on your index page. That will get them
in your door, then links to your pages.

Just came from a client/friend's house...he's building a 32 Ford pretty
cool...but $$$.


| Thank you for the info Rob, but that raises another question.
| Some sties use a 'site map', which is basically hundreds, or even
thousnads
| of words liting the items they sell.
| One of my pages is for auto parts, and I have about 12 suppliers for both
| foreign and domestic cars.
| To cover everything would take over 20,000 words, and I have reduced it to
| just over 6,000.
| Now for the question. If someone types in this search:
| 1928 Ford Model T front drop axle chrome plated with aftermarket disc
brake
| kit, wouldn't each of those words need to appear as text somewhere on a
page
| to match the search?
| My goal is for someone doing the search to see whether the EXACT item they
| are looking for is either available or not from one of my suppliers, and
if
| they click on my site from the search, an automotive home page opens
rather
| than have a page open with nothing but text, including the words they used
in
| the search.
| I'm also an old hot rodder, so I have an idea of how someone like me will
| enter a search. Once we finally discover the web (many of my friends
still
| use magazines or make phone calls all over the country), we can get pretty
| specific in our searches, and get frustrated quickly when 130,000 plus
| results appear, each with just a couple of words matching what we entered
in
| our search.
| I'm new to this, and I'm building my site from the perspective of what I
| want to see when I do a search, so I will appreciate all the advise and
| suggestions I can get from everyone.
| Thank you again, and I look forward to any and all replies.
|
| "Rob Giordano (Crash)" wrote:
|
| > garbage text for search engines is called "stuffing" which will have the
| > opposite effect of getting you more hits, as search engines will
penalize
| > you for stuffing.
| >
| >
| > | > | Thank you Trevor. I do appreciate the info. on the redirect. I will
try
| > and
| > | paste the HTML on the necessary text page, and redirect to the actual
page
| > I
| > | want viewed on my web, so hopefully all the 'garbage' text for the
search
| > | engines won't even be seen, and the page won't take all day to load
| > because
| > | of the hidden layer method I am using now.
| > |
| > | Thank you again.
| > |
| > | "Trevor L." wrote:
| > |
| > | > Tat wrote:
| > | > > I have noticed on a lot of web sites that the HTML source cannot
be
| > | > > viewed, either by using the right-click method, or the 'view
source'
| > | > > option in the browser menu bar. Is this a feature you have to buy
a
| > | > > program to get, or an HTML command you can place on a page?
Either
| > | > > way, could someone tell me the program or the HTML to use? Also,
can
| > | > > someone tell me how to use a 'redirect' command so one page
| > | > > automatically goes to another when the first page is selected in a
| > | > > search? Either one of these would be helpful, as I have a lot of
| > | > > pages that are just text for a search engine, and would like
others
| > | > > to be able to simply view the final destination page rather than
| > | > > having to click on a link to the page. Using a hidden field is an
| > | > > option, but really increases the pages loading time, and I am
looking
| > | > > for other options.
| > | >
| > | > To suppress the right-click uses a bit of JS. I am not sure how
people
| > set
| > | > it up so that view source doesn't work.
| > | >
| > | > But the experts here say that regadles of these methods, you will
find
| > the
| > | > HTML code in your cache. You just have to know the name of the
folder
| > the
| > | > cache is stored in. For IE6, it should be %USERPROFILE%\Local
| > | > Settings\Temporary Internet Files\ I am, told
| > | > Look for the name of the HTML as in the address bar.
| > | >
| > | > For a redirect,
| > | > <html>
| > | > <head>
| > | > <title>Redirecting...</title>
| > | > <meta http-equiv="refresh" content="2;
| > url=http://www.new.com/new/new.htm">
| > | > <!-- AN alternative
| > | > <script>
| > | > top.location.href="./xxx"
| > | > </script>
| > | > -->
| > | > </head>
| > | > <body>
| > | > <p>This page has moved. Please click
| > | > <a href="http://www.new.com/new/new.htm">here</a>
| > | > if the new page doesn't appear in 2 seconds.</p>
| > | > </body>
| > | > </html>
| > | >
| > | > The parameter 2 in content=" is the number of seconds. Set it to
zero
| > for
| > | > an immediate redirect
| > | > --
| > | > Cheers,
| > | > Trevor L.
| > | > Website: http://tandcl.homemail.com.au
| > | >
| > | >
| > | >
| >
| >
| >
 
T

Thomas A. Rowe

Post a link to one of these page, as it is not possible to hide the HTML Source of a page.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
T

Thomas A. Rowe

FYI: Google will only index the first 100 links on a page.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 

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

Similar Threads


Top