VINYLSEARCHER.COM CONTENT SHARING PROGRAM - OPTION 1
At VinylSearcher we are pleased to announce a new RSS feed that is free to use, and below we have
some asp code that will be able to read the feed
Any questions email: rss@vinylsearcher.com
Function displayRSS(ByVal strSource, ByVal strXSL)
Dim xmlHTTP, xmlRSSSource, xmlStyle
Dim strXSLFile
' Use the XMLHTTPConnection object to grab the feed
Set xmlHTTP = Server.CreateObject("Microsoft.XMLHTTP")
xmlHTTP.Open "GET", strSource, False
xmlHTTP.Send
' Load the feed into a DOM object
Set xmlRSSSource = Server.CreateObject("Microsoft.XMLDOM")
xmlRSSSource.async = False
xmlRSSSource.loadXML(xmlHTTP.ResponseText)
' Load the XSL style sheet
strXSLFile = Server.MapPath(strXSL)
Set xmlStyle = Server.CreateObject("Microsoft.XMLDOM")
xmlStyle.async = False
xmlStyle.load(strXSLFile)
' Render the feed using the style sheet
displayRSS = xmlRSSSource.transformNode(xmlStyle)
' Release resources
Set xmlStyle = Nothing
Set xmlRSSSource = Nothing
Set xmlHTTP = Nothing
End Function
|
JAVASCRIPT CONTENT SHARING - OPTION 2
Do you want some Vinyl Listed on your site ?
We dont actually pay for clicks but we are happy to provide free content in return for links, banner, help...
we will happily provide code so that you too can display vinyl on your site.
Look at the sample records listed at the bottom, this is a example, they can be
formatted to fit with your site.
Simply fill out these details below and then you can access the code section:
Name of your website to show the info on:
Your Contact Email address:
EXAMPLE CODE:
|