The Yearning, the Romance, and the Reality Part (3)
Good evening everyone,
I hope that you have had a good day/evening thus far!
A little more on reality.....
You realize that it' s reality when you are dragged to court over every detail. When you go to court, you see how much your ex has it in for you, unless, of course, it is for a legitimate reason. However, the latter is seldom the case!
When you and your ex are at odds, and clash frequently, you do not have the luxury to yearn (long) over the past, and what might have been, had you not divorced!
In my mind, and based upon my own experience, the Reality strips the Yearning from you, for, all of a sudden, you have to face that Reality. If you do not face it, and fall into the Yearning mood, you will get in trouble. Make sure to be prepared at all times, for there is no room for error in court battles!
It is very interesting that I have chosen "The Yearning, and The Reality" as a symbol for the site. In fact, to me, these two words are almost antonyms (opposites). The Yearning and the Reality express the vicissitudes of my life (checkered life)!
Definitely more on that later.......
Have a good night everybody!
Dr. DreamerLabels: Yearning and Reality
|
<%
Dim SearchType
Dim Query
Dim XML
Dim ResultLength
Dim recordNumber
Dim iCount
Dim IPAddy
Dim SearchEngine
Dim Node
DIM TITLE
DIM URL
DIM PRICE
DIM IMAGEURL
Dim ProductDescription
If amazonquery = "" Then
amazonquery = "Divorce"
ElseIf amazonquery = "Intoduction" Then
page = "Divorce"
End If
amazonquery = Replace(amazonquery, " ", "%20")
SearchEngine = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&SubscriptionId=1R15PYA4AG277WQYTTR2&Operation=ItemSearch&SearchIndex=Books&Keywords=" & amazonquery & "&ResponseGroup=Request,Small&AssociateTag=productinform-20"
Set XML = Server.CreateObject("Microsoft.XMLHTTP")
XML.Open "GET", SearchEngine, False
XML.Send
resultLength = CInt(XML.responseXML.selectNodes("ItemSearchResponse/Items/Item").length)
If resultLength > 0 Then
%>
|
Books:
|
<%
'For iCount = 0 To CInt(resultLength)-1
For iCount = 0 To 6
on error resume next
Set Node = XML.responseXML.selectSingleNode("ItemSearchResponse/Items/Item[" & CInt(iCount)& "]")
'ITEMID = Node.selectSingleNode("ASIN/ItemId").Text
TITLE = Node.selectSingleNode("ItemAttributes/Title").Text
URL = Node.selectSingleNode("DetailPageURL").Text
PRICE = Node.selectSingleNode("ItemAttributes/ListPrice/FormattedPrice").Text
IMAGEURL = Node.selectSingleNode("SmallImage/URL").Text
DESC = Node.selectSingleNode("EditorialReviews/EditorialReview/Content").Text
%>
|
<%
Response.Write(" | | " & TITLE & " | | ")
'Response.Write(" " & page_name & " ")
'Response.Write(" " & PRICE & " ")
'Response.Write Left(DESC,100)
'Response.Write ("....Read More")
%>
<% Next
Set Node = Nothing
Set XML = Nothing
%>
<%
End If
%>
|
0 Comments:
Post a Comment
<< Home