Reciprocal Link Checker script
Write a Review
Add to My Favorite
Refer it to Friend
Report Broken Link
Other links at ASP > Tips and Tutorials > XML and ASP
Did you know that the ADO Recordset contains a Save method that can save the contents of a Recordset to an XML file? In fact, in an upcoming article on 4Guys this method will be discussed. One disadvantage of using this approach, though, is that the XML produced by the Recordset is anything but readable. Plus, there is a ton of information there, describing gobs of data for each column in the Recordset (its data type, precision, NULLability, maxlength, etc.). Additionally, when saving a Recordset to XML, the XML node names are archaic: each row's node name is z:row; the parent node is named rs:data.
Category:
Pass-Guaranteed is your source for the Sun 310-081 exam. With our 310-081 Exam Resources, you can be rest assured that you will be fully prepared to take on your 310-081 Exam. Our Exams are written and formatted by Top senior IT Professionals working in today's prospering companies and data centers. All of our practice exams including the 310-081 exam will prepare you for success. 310-081 is a challenging exam, with our 310-081 study guide, you can feel safe with our question and answers that will help you in obtaining your successful completion of your 310-081 exam.
Category:
Sorry, I got a bit off hand with this tutorial. Though I saw some really horrible examples today on how to show an RSS feed using XMLDom so I just couldn?t stand not writing something about it. Imagnine a script that selects all nodes (XPath query was something like ?//*?), not carring where in the document, then looping them thru looking at their names and guessing what they are and then adding them to four separate strings with some weird separator. After doing this, they split the strings into four arrauys and started looping out the content. Oh please, it was horrible. No real sense of XML at all I?m afraid . I know there are better resources then that on the net, but I still felt I had to contribute with just one more.
If you never heard of RSS earlier, you are ethier very ignorant to what happens on the web these days and/or you are stuck running Internet Explorer which lacks any built in support for it. It all comes down quite easy though. An RSS feed is an online news syndication in the XML format. The main idea is to have a standardized way to share news over the net. I for an instance offers my articles as an RSS feed so people easily will know when I?ve written something new. For those who want to dive deeper into RSS I would recommend ?What Is RSS? over at XML.com.
I thought that it might also be a good idea to show a short RSS feed with only one news item in it so you know what source we are working with
Category:
XML stands for Extensible Markup Language. XML can be used in many ways and one of which is 'data storage'. This is the one we will be exploring in this article. XML along with XSL ( Extensible Stylesheet Language ) can by used to present data on the web pages. XML provides the data and XSL allows us to present it the way we want. Remember though that not all browsers support XML on the client side, only Micrsoft Internet Explorer 5.0 and above support XML. XML can also be used to perform RPC ( Remote Procedure Call ). Actually this capability of XML to allow communication between distant applications is so strong that Microsoft has developed SOAP ( Simple Object Access Protocol ) specification which uses XML to allow communication between remote applications. XML can be used for a lot more purposes which I haven't mentioned here. Also keep in mind that Microsoft's future .NET platform will make use of XML even more than any tool does today. ASP+, ADO+ and others will use XML to define and present data. So if you are comfortable with XML today, it will help you in the near future when you will be getting yourself ready to develop applications in the revolutionary platform called Microsoft .NET.
Category:
Dim BlnLinkBack, sReciprocalURL, sReciprocalLinkURLText
BlnLinkBack=False
sLinkBackURL="www.codefixer.com" 'this is the URL we wish to check for
sReciprocalURL= "www.codefixer.com/tutorials/index.asp" 'This is the URL
'we are going to check against
Category: