Parenting Advice Part (1)
Hello,
Needless to say that this is one of the most important topics!
During the difficult times of a divorce, you want to make sure to keep your focus on your kids. In essence, your kids should always come first. Try to shield the kids as much as you can. It is best if you can avoid arguing with your spouse in front of the kids, as this only hurts them.
Talk to your children about the divorce with a low tone, and explain to them that both parents love them, and that they, the children, have not done anything wrong. In other words, the children should not feel guilty because their parents are divorcing, as this is none of their doing. We understand that they will feel sad, but we do not want them to feel guilty!
As hard as it may be at times, try not to speak negatively about the other parent, mom or dad, as this is awkward for the kids and it affects them negatively. If both parents speak negatively about each other to the kids, then the children will be torn and will feel helpless.
I will expound on some of those issues next time.....
Have a great weekend everybody!
Dr. DreamerLabels: Parenting Advice
|
<%
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