473,378 Members | 1,605 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

q: How to get search engines crawl data

How to get search engines crawl data
I have a web application that uses user controls and pulls data directly
from database and shows it to users in the internet. So there is not html
that has the data, if I need to get Google or other search engines to crawl
these pages, what are my options?
Mar 8 '08 #1
7 1829

"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:B1**********************************@microsof t.com...
How to get search engines crawl data
I have a web application that uses user controls and pulls data directly
from database and shows it to users in the internet. So there is not html
that has the data, if I need to get Google or other search engines to
crawl
these pages, what are my options?

If the data is displayed as default then the search engine will read it as
html, if your users have to click on a button for example to get the data
then of cause it will not be indexed

Mar 8 '08 #2
Thanks for the reply. Data will be displaying via page_load, it is not in
html, is there any workaround?

"ThatsIT.net.au" wrote:
>
"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:B1**********************************@microsof t.com...
How to get search engines crawl data
I have a web application that uses user controls and pulls data directly
from database and shows it to users in the internet. So there is not html
that has the data, if I need to get Google or other search engines to
crawl
these pages, what are my options?


If the data is displayed as default then the search engine will read it as
html, if your users have to click on a button for example to get the data
then of cause it will not be indexed
Mar 8 '08 #3
"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:54**********************************@microsof t.com...
>If the data is displayed as default then the search engine will read it
as
html, if your users have to click on a button for example to get the data
then of cause it will not be indexed

Data will be displaying via page_load
Any default data which is displayed during Page_Load will be picked up by a
crawler...
it is not in HTML.
Pretty much everything displayed on a web page is HTML in one form or
another - exceptions obviously include things like Flash etc, but this
doesn't apply in your case...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Mar 8 '08 #4
Thanks for the reply. I am talking about the data coming from database, on
the fly, I am still not clear how a search engine would crawl it while the
data is simply on the client’s browser basically. Can you give me more detail
please?

"Mark Rae [MVP]" wrote:
"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:54**********************************@microsof t.com...
If the data is displayed as default then the search engine will read it
as
html, if your users have to click on a button for example to get the data
then of cause it will not be indexed
Data will be displaying via page_load

Any default data which is displayed during Page_Load will be picked up by a
crawler...
it is not in HTML.

Pretty much everything displayed on a web page is HTML in one form or
another - exceptions obviously include things like Flash etc, but this
doesn't apply in your case...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Mar 8 '08 #5
You have to understand how search engine crawlers work. They load a page,
index it. In the process they look for links ("A" tag) in the page. Then they
proceed to load each linked page and they repeat the process. It does not
matter *Where* your content is coming from. Hope that helps.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
"JIM.H." wrote:
Thanks for the reply. I am talking about the data coming from database, on
the fly, I am still not clear how a search engine would crawl it while the
data is simply on the client’s browser basically. Can you give me more detail
please?

"Mark Rae [MVP]" wrote:
"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:54**********************************@microsof t.com...
>If the data is displayed as default then the search engine will read it
>as
>html, if your users have to click on a button for example to get the data
>then of cause it will not be indexed
>
Data will be displaying via page_load
Any default data which is displayed during Page_Load will be picked up by a
crawler...
it is not in HTML.
Pretty much everything displayed on a web page is HTML in one form or
another - exceptions obviously include things like Flash etc, but this
doesn't apply in your case...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Mar 8 '08 #6
Thanks Peter. I think it is getting more clear but just to make sure I do not
miss anything; The data grid has the data shown to a user base on criteria in
page_load in code behind, let’s say search engine somehow crawled this page
successfully at that specific time while page is loaded just because somebody
has access that page. When the user close the page, input criteria is lost,
data is not available anymore on the screen. Now are we saying that since
search engine has crawled this page it will be able to include that page into
other people’s search result? If yes, the search engine should be keeping
those data somewhere, where would that be?

"Peter Bromberg [C# MVP]" wrote:
You have to understand how search engine crawlers work. They load a page,
index it. In the process they look for links ("A" tag) in the page. Then they
proceed to load each linked page and they repeat the process. It does not
matter *Where* your content is coming from. Hope that helps.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
"JIM.H." wrote:
Thanks for the reply. I am talking about the data coming from database, on
the fly, I am still not clear how a search engine would crawl it while the
data is simply on the client’s browser basically. Can you give me more detail
please?

"Mark Rae [MVP]" wrote:
"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:54**********************************@microsof t.com...
>
If the data is displayed as default then the search engine will read it
as
html, if your users have to click on a button for example to get the data
then of cause it will not be indexed

Data will be displaying via page_load
>
Any default data which is displayed during Page_Load will be picked up by a
crawler...
>
it is not in HTML.
>
Pretty much everything displayed on a web page is HTML in one form or
another - exceptions obviously include things like Flash etc, but this
doesn't apply in your case...
>
>
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
>
>
Mar 9 '08 #7

"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:61**********************************@microsof t.com...
Thanks Peter. I think it is getting more clear but just to make sure I do
not
miss anything; The data grid has the data shown to a user base on criteria
in
page_load in code behind, let’s say search engine somehow crawled this
page
successfully at that specific time while page is loaded just because
somebody
has access that page. When the user close the page, input criteria is
lost,
data is not available anymore on the screen. Now are we saying that since
search engine has crawled this page it will be able to include that page
into
other people’s search result? If yes, the search engine should be keeping
those data somewhere, where would that be?

The crawler will load the page as if it is a client, it will simply follow a
URL. what ever loads no mater where it comes from will be indexed. It does
no matter what users are using the page at the time. the crawler is the
user, how it loads when the crawler follows the links is what will be
indexed

>
"Peter Bromberg [C# MVP]" wrote:
>You have to understand how search engine crawlers work. They load a page,
index it. In the process they look for links ("A" tag) in the page. Then
they
proceed to load each linked page and they repeat the process. It does not
matter *Where* your content is coming from. Hope that helps.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
"JIM.H." wrote:
Thanks for the reply. I am talking about the data coming from database,
on
the fly, I am still not clear how a search engine would crawl it while
the
data is simply on the client’s browser basically. Can you give me more
detail
please?

"Mark Rae [MVP]" wrote:

"JIM.H." <JI**@discussions.microsoft.comwrote in message
news:54**********************************@microsof t.com...

If the data is displayed as default then the search engine will
read it
as
html, if your users have to click on a button for example to get
the data
then of cause it will not be indexed

Data will be displaying via page_load

Any default data which is displayed during Page_Load will be picked
up by a
crawler...

it is not in HTML.

Pretty much everything displayed on a web page is HTML in one form or
another - exceptions obviously include things like Flash etc, but
this
doesn't apply in your case...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Mar 13 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Aardwolf | last post by:
I have recently started to convert several of my websites over to dynamic sites with pages written as requested with php and in some cases using mysql databases to supply data within parts of the...
0
by: R. Rajesh Jeba Anbiah | last post by:
Q: Is PHP search engine friendly? Q: Will search engine spiders crawl my PHP pages? A: Spiders should crawl anything provided they're accessible. Since, nowadays most of the websites are been...
1
by: Deforgel | last post by:
Hello, Can anyone help me, I have a website using a SQL database that is called by ASP pages and I want the search engines to crawl through and index each of the items in the database. I've...
0
by: only_me | last post by:
Not a coding question as such but highly related to asp/dynamic pages issues : has anyone any suggestions on the following ASP sites are generally (always) of a dynamic nature, pages can be...
1
by: disaia | last post by:
2 problems: Example: If a person types in a part number into Yahoo: 1. Is there a way for Yahoo to list your web site as one of the results. 2. If the user clicks on your link, can your web...
1
by: om.newsgroup | last post by:
I want to have a list of businesses stored in a database. When some one does a search, a list will come up with a few businesses shown according tot he search criteria. When one of the businesses...
39
by: Noticedtrends | last post by:
Can inference search-engines narrow-down the number of often irrelevant results, by using specific keywords; for the purpose of discerning emerging social & business trends? For example, if...
1
by: apa-sf | last post by:
Hi. Few days ago I added url to my page to googlebot. In my server's log I can see that googlebot visited my page. I've also added sitemap.xml through google webmaster tools. How long will it...
0
by: passion | last post by:
"Specialized Search Engines" along with Google Search Capability (2 in 1): http://specialized-search-engines.blogspot.com/ Billions of websites are available on the web and plenty of extremely...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.