Santry Technology Solutions, Content Management, DotNetNuke, SharePoint Consulting
Register | Login
Tuesday, December 02, 2008

Sections
  
About Us
  
Partners
Downloads
  
 WWWCoder.com Resource Directory

Creating an ASP.Net Trackback Handler
1/28/2004 12:53:33 PM

In this article we are going to cover how to trackback enable your site. There are several resources on the Web for implementing trackbacks in C#, but very few if any for doing this in VB.Net. Here we provide you with VB.Net code as a basis to build upon to implement trackback support into your portal or Web site.

What are Trackbacks?

Trackbacks are taken from popular blogging applications that allow your site to be notified when someone links to a page contained on your site. Developed by MovableType.org for their publishing system. Trackbacks and pingbacks (another method for site notification using XML-RPC), are growing fast in their use, and in the .Net development community in applications like .Text weblogs.

Here is an outline of the trackback notification process:

  1. An external website is updated with a link to your site
  2. Some process in the external site is notified of the new link and sends a request to your site to see if the page being linked contains information on where to send a trackback notification.
  3. If the information is found, the external site contacts the trackback handler for your site to notify that a link has been added to the page.
  4. Your trackback handler then verifies the existence of the link in the page and adds an entry to your trackback table.

For WWWCoder.com we then add an entry in our comments table that is displayed in the article. This entry contains the title of the site and a link to the page that contains a link to the article.

For this example we will create a Trackback.aspx page for handling our trackback notifications. You could also opt to use an HTTPHandler for dealing with the trackbacks as well.

Create a Pointer to Your Trackback

The first thing you need to do for the trackback transaction is provide the external site with information about your trackback. This information is provided by embedding Resource Description Framework (RDF) information within the document. The RDF information is basically XML information about your trackback handler and the current document. For example:

<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description rdf:about="http://www.wwwcoder.com/main/parentid/263/site/2281/68/default.aspx" dc:identifier="http://www.wwwcoder.com/main/parentid/263/site/2281/68/default.aspx" dc:title="WWWCoder.com - Working with the System Registry" trackback:ping="http://www.wwwcoder.com/Trackback.aspx?id=2281" /></rdf:RDF>-->

You can see from the RDF information above that we provide a link to the current document, the URL of the trackback handler, and description information. This information will be used by the external site's trackback notifyer to provide information to our handler about the document they linked to. We will not provide a mechanism for generating this string, but you should be able to generate the string based on your specific application and then insert the information into the source HTML.

Create the Handler

Now we need something to handle the trackback request when it comes in. First we'll create an aspx page called Trackback.aspx. This page will receive the requests from the external site and respond to them.

	
Imports System
Imports System.Web
Imports System.Xml

Public Class Trackback

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            'Put user code to initialize the page here
            Dim strBody As String
            Try
                Response.Clear()
                Response.ContentType = "text/xml"
                'now make sure they are referencing some article id.
                If Request.Params("id") <> "" Then
                    Dim title As String
                    Dim excerpt As String
                    Dim url As String
                    Dim blog_name As String
                    If Not Request.Params("title") Is Nothing Then
                        title = Request.Params("title").ToString
                    End If
                    If Not Request.Params("excerpt") Is Nothing Then
                        excerpt = Request.Params("excerpt").ToString
                    End If
                    If Not Request.Params("url") Is Nothing Then
                        Dim aurl As String()
                        'what comes back in the url field is an array with two elements:
                        'the first element is the requesting url of the external site,
                        'this is what we need in order to verify the link.
                        aurl = Split(Request.Params("url"), ",")
                        url = aurl(0)
                    End If
                    If Not Request.Params("blog_name") Is Nothing Then
                        blog_name = Request.Params("blog_name").ToString
                    End If
                    If Request.HttpMethod = "POST" Then
                        Dim id As String = CType(Request.Params("id"), Integer)
                        'since this is a dynamically generated article, we need the id of the page
                        'in order to generate a link to check.
                        Dim targetPage As String = GenerateLink(id)
                        If url.Length > 0 Then
                            'first make sure there is an article for this id. 
                            'We'll make a call to another class.
                            Dim objBlogs As New MyNamespace.PingBackService
                            Dim tmpTitle As String = objBlogs.CheckforURL(url, targetPage, title)
                            If tmpTitle <> "0" Then
                                'create the comment
                                ::
                                ::
                            Else
                                TrackbackResponse(2, "Sorry couldn't find a " & _
                                   "relevant link for " & targetPage & " in " & url)
                            End If
                        End If
                    Else
                        Dim articleTitle As String
                        Dim articleURL As String
                        Dim w As XmlTextWriter = New XmlTextWriter(Response.Output)
                        w.Formatting = Formatting.Indented
                        w.WriteStartDocument()
                        w.WriteStartElement("response")
                        w.WriteElementString("error", "0")
                        w.WriteStartElement("rss")
                        w.WriteAttributeString("version", "0.91")
                        w.WriteStartElement("channel")
                        w.WriteElementString("title", articleTitle)
                        w.WriteElementString("link", articleURL)
                        w.WriteElementString("description", "")
                        w.WriteElementString("language", "en-us")
                        w.WriteEndElement()
                        w.WriteEndElement()
                        w.WriteEndElement()
                        w.WriteEndDocument()
                    End If
                Else
                    TrackbackResponse(1, "EntryID is invalid or missing")
                End If
            Catch ex As Exception
                'handle the error.
            End Try
        End Sub

You'll notice in the method above, we made a couple calls to outside methods:

GenerateLink - accepts an id of the primary key of the article in the database. This method will return a friendly URL of the dynamically generated article on our site. We will not cover this method in this article since systems may use various methods of generating links.

TrackbackResponse - This method returns XML text error messages to the site sending the trackback request.

   	Private Sub TrackbackResponse(ByVal errNum As Integer, ByVal errText As String)
            Dim strBody As String
            Try
                Dim d As New XmlDocument
                Dim root As XmlElement = d.CreateElement("response")
                d.AppendChild(root)
                Dim er As XmlElement = d.CreateElement("error")
                root.AppendChild(er)
                er.AppendChild(d.CreateTextNode(errNum.ToString))
                If errText <> "" Then
                    Dim msg As XmlElement = d.CreateElement("message")
                    root.AppendChild(msg)
                    msg.AppendChild(d.CreateTextNode(errText))
                End If
                d.Save(Response.Output)
                Response.End()
            Catch ex As Exception
               
            End Try
        End Sub

CheckforURL - This method is contained in another class for handling the request to ensure that the external page contains a link to our page. Once this is verified, we then add the link back to the external page in our comments table. The method will obtain the page text for the external page, pull out the title of the page and check for the existence of the link in the page. If it does not return a link, it will then return a "0" string value.

Imports System
Imports System.Net
Imports System.Web
Imports System.IO
Imports System.Text
Imports System.Text.RegularExpressions
Imports System.Web.Services
::
::
     Public Class PingBackService
	   Public Function CheckForURL(ByVal sURI As String, _
	        ByVal tURI As String, ByVal pageTitle As String) As String
            Try
                Dim page As String = GetPageHTML(sURI)
                If (page.Trim = "") Or (page.IndexOf(tURI) < 0) Then
                    Return "0"
                Else
                    Dim pat As String = "<head.*?>.*<title.*?>(.*)</title.*?>.*</head.*?>"
                    Dim reg As Regex = New Regex(pat, RegexOptions.IgnoreCase.Singleline)
                    Dim m As Match = reg.Match(page)
                    If m.Success Then
                        pageTitle = m.Result("$1")
                        Return pageTitle
                    End If
                End If
            Catch ex As Exception                
                Return "0"
            End Try
            Return pageTitle
        End Function
::
::

The CheckForURL method calls the GetPageHTML method to obtain the text information from the Web page using an HTTP request.

	Public Function GetPageHTML(ByVal inURL As String) As String
            Dim req As WebRequest = WebRequest.Create(inURL)
            Dim Null As Object
            Dim wreq As HttpWebRequest = req
            If Not (wreq Is Null) Then
                wreq.UserAgent = "My User Agent String"
                wreq.Referer = "http://www.wwwcoder.com/"
                wreq.Timeout = 60000
            End If
            Dim response As HttpWebResponse = wreq.GetResponse
            Dim s As Stream = response.GetResponseStream
            Dim enc As String = response.ContentEncoding.Trim
            If enc = "" Then enc = "us-ascii"
            Dim encode As Encoding = System.Text.Encoding.GetEncoding(enc)
            Dim sr As StreamReader = New StreamReader(s, encode)
            Return sr.ReadToEnd
        End Function

Once the GetPageHTML returns the text back to our CheckForURLs method, the CheckForURL method will search the text for any existence of the link.

Some other things of note here, you may want to do some checking on the parameters that are sent to your handler to ensure that the data is corrected and safe for your application. In addition, if you generate static RSS 2.0 files that use the <slash:comments> element, you will need to regenerate your RSS file to display the updated trackback information and/or comments count.

By: Patrick Santry, Microsoft MVP (ASP/ASP.NET), developer of this site, author of books on Web technologies, and member of the DotNetNuke core development team. If you're interested in the services provided by Patrick, visit his company Website at Santry.com.

Related Articles
   Related Document Creating an ASP.Net Pingback Handler


Page Options:
format for printing  Format for Printer
email article  Email Page
add to your favorites   Add to Favorites
How would you rate the quality of this content?
Poor - - Excellent
Comments?
Overall Rating:
Comments Left:
Left on 11/30/2008 12:34:05 PM by Anonymous
Comments: c17t [a]  [/a]
No ratings available.
Left on 11/30/2008 12:19:00 PM by Anonymous
Comments: c12t [a]  [/a]
No ratings available.
Left on 11/30/2008 11:26:24 AM by Anonymous
Comments: c565t [a]  [/a]
No ratings available.
Left on 11/30/2008 11:17:29 AM by Anonymous
Comments: c551t [a]  [/a]
No ratings available.
Left on 11/30/2008 10:56:31 AM by Anonymous
Comments: c164t [a]  [/a]
No ratings available.
Left on 11/30/2008 10:41:37 AM by Anonymous
Comments: c174t [a]  [/a]
No ratings available.
Left on 11/30/2008 10:19:03 AM by Anonymous
Comments: c835t [a]  [/a]
No ratings available.
Left on 11/30/2008 9:56:28 AM by Anonymous
Comments: c852t [a]  [/a]
No ratings available.
Left on 11/30/2008 9:41:18 AM by Anonymous
Comments: c237t [a] http://www.wists.com/AaronThomasj/a1ecc43b1d26ccae30dff4d962635166 [/a]  [a] http://www.wists.com/AbigailAdamso/670f1bb01380af3c392e1732875f2bed [/a]  [a] http://www.wists.com/KevinAlleng/1c128f66ce20d4d0f4ea4e28f390a0f3 [/a]  [a] http://www.wists.com/NathanMoorel/cb45c7c92ef84ece1fba5ebcf0448ec5 [/a]  Adult Dating Uk - http://www.wists.com/AaronThomasj/a1ecc43b1d26ccae30dff4d962635166  The History Of Online Dating - http://www.wists.com/AbigailAdamso/670f1bb01380af3c392e1732875f2bed
No ratings available.
Left on 11/28/2008 9:59:59 PM by Anonymous
Comments: c955t [a]  [/a]
No ratings available.
Left on 11/28/2008 9:17:59 PM by Anonymous
Comments: c338t [a]  [/a]
No ratings available.
Left on 11/28/2008 9:09:34 PM by Anonymous
Comments: c446t [a]  [/a]
No ratings available.
Left on 11/28/2008 7:46:14 PM by Anonymous
Comments: c863t [a]  [/a]
No ratings available.
Left on 11/28/2008 7:38:03 PM by Anonymous
Comments: c731t [a]  [/a]
No ratings available.
Left on 11/28/2008 7:21:52 PM by Anonymous
Comments: c168t [a]  [/a]
No ratings available.
Left on 11/28/2008 7:13:44 PM by Anonymous
Comments: c379t [a]  [/a]
No ratings available.
Left on 11/28/2008 7:05:43 PM by Anonymous
Comments: c942t [a]  [/a]
No ratings available.
Left on 11/28/2008 6:33:21 PM by Anonymous
Comments: c127t [a]  [/a]
No ratings available.
Left on 11/28/2008 6:17:18 PM by Anonymous
Comments: c505t [a]  [/a]
No ratings available.
Left on 11/28/2008 6:09:13 PM by Anonymous
Comments: c943t [a]  [/a]
No ratings available.
Left on 11/28/2008 5:36:55 PM by Anonymous
Comments: c813t [a]  [/a]
No ratings available.
Left on 11/28/2008 5:28:57 PM by Anonymous
Comments: c267t [a]  [/a]
No ratings available.
Left on 11/28/2008 5:05:06 PM by Anonymous
Comments: c618t [a]  [/a]
No ratings available.
Left on 11/28/2008 4:33:36 PM by Anonymous
Comments: c817t [a]  [/a]
No ratings available.
Left on 11/28/2008 4:25:47 PM by Anonymous
Comments: c812t [a]  [/a]
No ratings available.
Left on 11/28/2008 4:17:57 PM by Anonymous
Comments: c90t [a]  [/a]
No ratings available.
Left on 11/28/2008 4:10:16 PM by Anonymous
Comments: c307t [a]  [/a]
No ratings available.
Left on 11/28/2008 3:54:44 PM by Anonymous
Comments: c212t [a]  [/a]
No ratings available.
Left on 11/28/2008 3:47:00 PM by Anonymous
Comments: c27t [a]  [/a]
No ratings available.
Left on 11/28/2008 3:39:05 PM by Anonymous
Comments: c403t [a]  [/a]
No ratings available.
Left on 11/28/2008 3:31:13 PM by Anonymous
Comments: c743t [a]  [/a]
No ratings available.
Left on 11/28/2008 3:15:22 PM by Anonymous
Comments: c66t [a]  [/a]
No ratings available.
Left on 11/28/2008 2:28:07 PM by Anonymous
Comments: c960t [a]  [/a]
No ratings available.
Left on 11/28/2008 1:48:33 PM by Anonymous
Comments: c632t [a]  [/a]
No ratings available.
Left on 11/28/2008 1:40:28 PM by Anonymous
Comments: c256t [a]  [/a]
No ratings available.
Left on 11/28/2008 1:32:25 PM by Anonymous
Comments: c983t [a]  [/a]
No ratings available.
Left on 11/28/2008 1:24:35 PM by Anonymous
Comments: c530t [a]  [/a]
No ratings available.
Left on 11/28/2008 1:08:54 PM by Anonymous
Comments: c706t [a]  [/a]
No ratings available.
Left on 11/28/2008 12:38:21 PM by Anonymous
Comments: c489t [a]  [/a]
No ratings available.
Left on 11/28/2008 12:00:28 PM by Anonymous
Comments: c611t [a]  [/a]
No ratings available.
Left on 11/28/2008 11:52:49 AM by Anonymous
Comments: c400t [a]  [/a]
No ratings available.
Left on 11/28/2008 11:30:41 AM by Anonymous
Comments: c349t [a]  [/a]
No ratings available.
Left on 11/28/2008 11:23:11 AM by Anonymous
Comments: c586t [a]  [/a]
No ratings available.
Left on 11/28/2008 11:08:11 AM by Anonymous
Comments: c711t [a] http://www.wists.com/HunterKingj/a330427b915c9877a5d46acbfb45e84e [/a]  [a] http://www.wists.com/LucasGonzalezk/803b5d303e276d8ba0d38b8bf369ab07 [/a]  [a] http://www.wists.com/JessicaWooda/d37ab952bc88a2ca07e45470ca0de92b [/a]  Singles In Madison - http://www.wists.com/HunterKingj/a330427b915c9877a5d46acbfb45e84e
No ratings available.
Left on 11/27/2008 11:32:10 PM by Anonymous
Comments: c861t [a]  [/a]
No ratings available.
Left on 11/27/2008 11:25:50 PM by Anonymous
Comments: c79t [a]  [/a]
No ratings available.
Left on 11/27/2008 11:19:31 PM by Anonymous
Comments: c507t [a]  [/a]
No ratings available.
Left on 11/27/2008 11:07:04 PM by Anonymous
Comments: c799t [a]  [/a]
No ratings available.
Left on 11/27/2008 10:42:00 PM by Anonymous
Comments: c344t [a]  [/a]
No ratings available.
Left on 11/27/2008 10:35:46 PM by Anonymous
Comments: c651t [a] http://www.wists.com/ColeRogersh/a2b40f23a912d5c356f98c1fc2fd5827 [/a]  [a] http://www.wists.com/EvanTorresd/6af3747cc79a320ed64302ad9525ec58 [/a]  [a] http://www.wists.com/AbigailAdamso/0ca2c71071146e75cd247f1d47de66b6 [/a]  [a] http://www.wists.com/NathanielFloresg/3576c0ed659ee6f21006e8fcb92cdb27 [/a]  Tv Escorts Manchester Uk - http://www.wists.com/ColeRogersh/a2b40f23a912d5c356f98c1fc2fd5827  White Man Dating Black Women - http://www.wists.com/EvanTorresd/6af3747cc79a320ed64302ad9525ec58
No ratings available.
Left on 11/17/2008 11:24:46 PM by Anonymous
Comments: c538t [a]  [/a]
No ratings available.
Left on 11/17/2008 11:23:46 PM by Anonymous
Comments: c331t [a]  [/a]
No ratings available.
Left on 11/17/2008 11:17:15 PM by Anonymous
Comments: c786t [a]  [/a]
No ratings available.
Left on 11/17/2008 11:04:22 PM by Anonymous
Comments: c427t [a]  [/a]
No ratings available.
Left on 11/17/2008 10:38:28 PM by Anonymous
Comments: c906t [a]  [/a]
No ratings available.
Left on 11/17/2008 10:31:57 PM by Anonymous
Comments: c599t [a]  [/a]
No ratings available.
Left on 11/17/2008 10:25:32 PM by Anonymous
Comments: c247t [a]  [/a]
No ratings available.
Left on 11/17/2008 10:18:59 PM by Anonymous
Comments: c639t [a]  [/a]
No ratings available.
Left on 11/17/2008 10:12:22 PM by Anonymous
Comments: c283t [a]  [/a]
No ratings available.
Left on 11/17/2008 9:52:50 PM by Anonymous
Comments: c50t [a]  [/a]
No ratings available.
Left on 11/17/2008 9:39:33 PM by Anonymous
Comments: c532t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:46:58 PM by Anonymous
Comments: c662t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:45:57 PM by Anonymous
Comments: c862t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:44:16 PM by Anonymous
Comments: c272t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:40:26 PM by Anonymous
Comments: c117t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:34:52 PM by Anonymous
Comments: c914t [a]  [/a]
No ratings available.
Left on 11/16/2008 10:28:15 PM by Anonymous
Comments: c377t [a]  [/a]
No ratings available.
Left on 11/15/2008 10:24:21 PM by Anonymous
Comments: c191t [a]  [/a]
No ratings available.
Left on 11/15/2008 10:17:58 PM by Anonymous
Comments: c889t [a]  [/a]
No ratings available.
Left on 11/15/2008 9:37:40 PM by Anonymous
Comments: c271t [a]  [/a]
No ratings available.
Left on 11/15/2008 9:11:02 PM by Anonymous
Comments: c390t [a]  [/a]
No ratings available.
Left on 11/15/2008 8:57:40 PM by Anonymous
Comments: c885t [a] http://www.purevolume.com/listeners/shance_escort_swi [/a]
No ratings available.
Left on 11/15/2008 1:02:10 AM by Anonymous
Comments: c159t [a]  [/a]
No ratings available.
Left on 11/15/2008 12:49:08 AM by Anonymous
Comments: c993t [a] http://www.imeem.com/people/lLWrWyr [/a]
No ratings available.
Left on 11/11/2008 8:16:18 PM by Anonymous
Comments: c870t [a]  [/a]
No ratings available.
Left on 11/11/2008 8:09:22 PM by Anonymous
Comments: c304t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:58:19 PM by Anonymous
Comments: c65t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:52:42 PM by Anonymous
Comments: c951t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:37:23 PM by Anonymous
Comments: c454t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:35:48 PM by Anonymous
Comments: c843t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:30:23 PM by Anonymous
Comments: c583t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:25:03 PM by Anonymous
Comments: c576t [a]  [/a]
No ratings available.
Left on 11/11/2008 7:14:04 PM by Anonymous
Comments: c23t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:57:20 PM by Anonymous
Comments: c772t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:51:14 PM by Anonymous
Comments: c418t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:35:45 PM by Anonymous
Comments: c355t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:34:53 PM by Anonymous
Comments: c964t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:28:08 PM by Anonymous
Comments: c742t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:13:15 PM by Anonymous
Comments: c224t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:12:43 PM by Anonymous
Comments: c911t [a]  [/a]
No ratings available.
Left on 11/11/2008 6:07:29 PM by Anonymous
Comments: c173t [a]  [/a]
No ratings available.
Left on 11/11/2008 5:50:56 PM by Anonymous
Comments: c288t [a]  [/a]
No ratings available.
Left on 11/11/2008 5:43:16 PM by Anonymous
Comments: c546t [a] http://www.purevolume.com/listeners/minneapolis_escort_swi [/a]
No ratings available.
Left on 11/11/2008 5:13:28 PM by Anonymous
Comments: c455t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:57:26 PM by Anonymous
Comments: c408t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:46:31 PM by Anonymous
Comments: c345t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:13:36 PM by Anonymous
Comments: c909t [a]  [/a]
No ratings available.
Left on 11/11/2008 11:18:35 AM by Anonymous
Comments: c361t [a]  [/a]
No ratings available.
Left on 11/11/2008 11:17:02 AM by Anonymous
Comments: c1t [a]  [/a]
No ratings available.
Left on 11/11/2008 11:11:20 AM by Anonymous
Comments: c762t [a]  [/a]
No ratings available.
Left on 11/11/2008 10:51:18 AM by Anonymous
Comments: c124t [a]  [/a]
No ratings available.
Left on 11/11/2008 10:48:32 AM by Anonymous
Comments: c434t [a]  [/a]
No ratings available.
Left on 11/11/2008 10:44:38 AM by Anonymous
Comments: c406t [a]  [/a]
No ratings available.
Left on 11/11/2008 10:42:49 AM by Anonymous
Comments: c831t [a]  [/a]
No ratings available.
Left on 11/11/2008 10:13:46 AM by Anonymous
Comments: c367t [a]  [/a]
No ratings available.
Left on 11/11/2008 9:56:07 AM by Anonymous
Comments: c842t [a]  [/a]
No ratings available.
Left on 11/11/2008 9:50:25 AM by Anonymous
Comments: c77t [a]  [/a]
No ratings available.
Left on 11/11/2008 5:22:02 AM by Anonymous
Comments: c651t [a]  [/a]
No ratings available.
Left on 11/11/2008 5:07:13 AM by Anonymous
Comments: c629t [a]  [/a]
No ratings available.
Left on 11/11/2008 5:00:48 AM by Anonymous
Comments: c792t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:53:44 AM by Anonymous
Comments: c503t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:40:12 AM by Anonymous
Comments: c779t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:27:09 AM by Anonymous
Comments: c99t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:14:04 AM by Anonymous
Comments: c728t [a]  [/a]
No ratings available.
Left on 11/11/2008 4:07:27 AM by Anonymous
Comments: c707t [a]  [/a]
No ratings available.
Left on 11/11/2008 3:33:53 AM by Anonymous
Comments: c261t [a]  [/a]
No ratings available.
Left on 11/11/2008 3:01:00 AM by Anonymous
Comments: c653t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:54:15 AM by Anonymous
Comments: c63t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:47:36 AM by Anonymous
Comments: c518t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:40:58 AM by Anonymous
Comments: c16t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:27:41 AM by Anonymous
Comments: c895t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:14:08 AM by Anonymous
Comments: c994t [a]  [/a]
No ratings available.
Left on 11/11/2008 2:07:16 AM by Anonymous
Comments: c542t [a]  [/a]
No ratings available.
Left on 11/10/2008 2:50:39 AM by Anonymous
Comments: c443t [a]  [/a]
No ratings available.
Left on 11/10/2008 2:43:19 AM by Anonymous
Comments: c899t [a]  [/a]
No ratings available.
Left on 11/10/2008 2:36:08 AM by Anonymous
Comments: c457t [a]  [/a]
No ratings available.
Left on 11/10/2008 2:28:59 AM by Anonymous
Comments: c106t [a]  [/a]
No ratings available.
Left on 11/10/2008 1:39:54 AM by Anonymous
Comments: c376t [a]  [/a]
No ratings available.
Left on 11/10/2008 1:33:01 AM by Anonymous
Comments: c977t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:58:16 PM by Anonymous
Comments: c425t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:52:32 PM by Anonymous
Comments: c368t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:48:21 PM by Anonymous
Comments: c266t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:32:46 PM by Anonymous
Comments: c255t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:26:14 PM by Anonymous
Comments: c796t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:22:14 PM by Anonymous
Comments: c504t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:18:49 PM by Anonymous
Comments: c828t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:16:04 PM by Anonymous
Comments: c387t [a]  [/a]
No ratings available.
Left on 11/8/2008 11:01:50 PM by Anonymous
Comments: c871t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:58:36 PM by Anonymous
Comments: c153t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:58:28 PM by Anonymous
Comments: c424t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:51:51 PM by Anonymous
Comments: c262t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:47:00 PM by Anonymous
Comments: c971t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:46:17 PM by Anonymous
Comments: c144t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:41:05 PM by Anonymous
Comments: c438t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:38:43 PM by Anonymous
Comments: c967t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:35:20 PM by Anonymous
Comments: c55t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:30:22 PM by Anonymous
Comments: c440t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:23:53 PM by Anonymous
Comments: c141t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:22:41 PM by Anonymous
Comments: c220t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:19:15 PM by Anonymous
Comments: c393t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:12:20 PM by Anonymous
Comments: c645t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:06:10 PM by Anonymous
Comments: c415t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:05:42 PM by Anonymous
Comments: c502t [a]  [/a]
No ratings available.
Left on 11/8/2008 10:00:44 PM by Anonymous
Comments: c869t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:52:33 PM by Anonymous
Comments: c184t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:46:03 PM by Anonymous
Comments: c517t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:39:21 PM by Anonymous
Comments: c54t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:36:45 PM by Anonymous
Comments: c550t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:27:20 PM by Anonymous
Comments: c268t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:19:44 PM by Anonymous
Comments: c803t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:13:37 PM by Anonymous
Comments: c113t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:07:37 PM by Anonymous
Comments: c163t [a]  [/a]
No ratings available.
Left on 11/8/2008 9:03:44 PM by Anonymous
Comments: c692t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:59:34 PM by Anonymous
Comments: c459t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:53:11 PM by Anonymous
Comments: c868t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:47:46 PM by Anonymous
Comments: c421t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:44:04 PM by Anonymous
Comments: c388t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:39:48 PM by Anonymous
Comments: c130t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:39:46 PM by Anonymous
Comments: c587t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:38:07 PM by Anonymous
Comments: c192t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:31:45 PM by Anonymous
Comments: c311t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:20:48 PM by Anonymous
Comments: c720t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:19:48 PM by Anonymous
Comments: c100t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:14:51 PM by Anonymous
Comments: c713t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:09:08 PM by Anonymous
Comments: c867t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:08:16 PM by Anonymous
Comments: c204t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:03:15 PM by Anonymous
Comments: c646t [a]  [/a]
No ratings available.
Left on 11/8/2008 8:00:09 PM by Anonymous
Comments: c763t [a]  [/a]
No ratings available.
Left on 11/8/2008 7:57:26 PM by Anonymous
Comments: c386t [a]  [/a]
No ratings available.
Left on 11/8/2008 7:51:43 PM by Anonymous
Comments: c104t [a]  [/a]
No ratings available.
Left on 11/8/2008 7:44:22 PM by Anonymous
Comments: c784