Question : why does my ror.xml file appear in google results

Hello,
Why would my yahoo ror.xml file show up in the google results, I am totally confused. they are linked to an asp page with a repeat region, but I have done all this for google and it works fine for the google sitemap but it shows the ror.xml .

regards

k
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:


  
    ROR Sitemap for http://mysite.com/
    mysite.com/
    
      ROR Sitemap for http://mysite.com/
      mysite.com/
      sitemap
      SiteMap
    
    
      http://www.mysite.com/ror_remembers1.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers2.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers3.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers4.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers5.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers6.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers7.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_remembers8.asp
      week
      1
      sitemap
    
	      http://www.mysite.com/ror_remembers9.asp
      week
      1
      sitemap
    
	 
      http://www.mysite.com/ror_skills1.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_skills2.asp
      week
      1
      sitemap
    
    
      http://www.mysite.com/ror_skills3.asp
      week
      1
      sitemap
    
  

 
 
the following is one of the dynamic asp pages
 
 
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Dim MM_conn_STRING
MM_conn_STRING = "dsn=mysitedbsource;uid=dingdong;password=woooooooooo"
%>
<%
Dim rspics
Dim rspics_cmd
Dim rspics_numRows
 
' Query the database and get all the records from the Images table
Set rspics_cmd = Server.CreateObject ("ADODB.Command")
rspics_cmd.ActiveConnection = MM_conn_STRING
rspics_cmd.CommandText = "SELECT id_usr, firstname_usr, lastname_usr FROM topofmountain.reg_user WHERE _rowid >=1 and _rowid <=100  and id_usr <> 90" 
rspics_cmd.Prepared = true
 
Set rspics = rspics_cmd.Execute
 
' Send the headers
Response.ContentType = "text/xml"
Response.AddHeader "Pragma", "public"
Response.AddHeader "Cache-control", "private"
Response.AddHeader "Expires", "-1"
%>

  
    <% While (NOT rspics.EOF) %>
    
    
    http://www.mysite.com/woppee.asp?po=<%=(rspics.Fields.Item("id_usr").Value)%>&name=<%=(rspics.Fields.Item("firstname_usr").Value)&"_"&(rspics.Fields.Item("lastname_usr").Value)%>
    
    week
    1
    sitemap
    
    <% 
  	rspics.MoveNext()
	Wend
%>
  

<%
rspics.Close()
Set rspics = Nothing
%>
Open in New Window Select All

Answer : why does my ror.xml file appear in google results

Google indexes .xml files along with many other file types.  Do you have a link to your ror.xml file on your site that Google may have crawled to find the file?  Simply viewing pages with the Google Toolbar installed can get your pages indexed.

If you don't want the page indexed, create a robots.txt file

http://www.robotstxt.org/robotstxt.html

http://www.google.com/support/webmasters/bin/answer.py?answer=93710

You can sign up for Google Webmaster Tools (free) and request the page be removed from the index.

 

Random Solutions  
 
programming4us programming4us