FYI - Here are some methods for you to try:
************BLOCK GOOGLE INDEXING**************
How to prevent my website from being indexed by Google:
http://www.seoblogr.com/google/how-to-prevent-my-website-from-being-indexed-by-google/ (its too long to post)
ALSO---->
********BLOCK GENERAL CACHING**********************
To request that your web page not be cached, you must put a No-Cache directive in the <HEAD> section of the web page.
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> is the HTTP/1.1 compliant method of requesting that a web page not be cached.
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> was the HTTP/1.0 compliant method of requesting that a web page not be cached.
*****************************
Prevent caching of web pages by browsers
The web pages
you view are stored by your system inside the cache directory. Now, when you view these pages again, the browser searches the cache, and if it finds the page there, it displays it immediately. This presents problems to web developers when they update a page since the visitors see an older version (that was stored in the cache) of the page.
To prevent this from happening set the expiration date in the past inside the <meta>. Thus the browser reloads the page everytime the user visits.
Here is the code:
<meta http-equiv="expires" value="Thu, 16 Mar 2000
11:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
********************************************************
How to prevent your pages from being cached by the browser
Add the following HTML in between the <HEAD> and </HEAD> tags of your page:
<meta http-equiv="Expires" content="-1">
FrontPage Steps:
1. Edit the page in FrontPage Editor.
2. Right click within the page, and select page properties.
3. Click on the Custom Tab.
4. Click on Add (System variables).
5. Enter "Expires" (no quotes) for the name.
6. Enter "-1" (no quotes) for the value.
7. Click OK all of the way out.
8. Save the page.
***************************
Last but not least, there are numerous articles for users to work on getting pages removed from the monster Google catalog. I've never tried it, personally, but many have. Here are a couple more links:
http://digg.com/security/Getting_things_deleted_from_Google_s_cachehttps://www.google.com/webmasters/tools/removals?pli=1*************************************
Happy surfing!!
Swytch~~
NOTE: these are general HTML rules which can be applied to web pages. You may be savvy enough to get them to work on Myspace but I'm not guaranteeing it. I just thought I'd provide some sound code for you to play with.