<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Webmaster Forums</title>
		<link>http://www.ahfb2000.com/webmaster_help_desk/</link>
		<description>Webmaster Forums covering webmaster topics such as web hosting and code forums</description>
		<language>en</language>
		<lastBuildDate>Fri, 03 Sep 2010 01:22:46 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.ahfb2000.com/webmaster_help_desk/images/misc/rss.jpg</url>
			<title>Webmaster Forums</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/</link>
		</image>
		<item>
			<title>Looking to buy dating sites!</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12576&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 15:28:30 GMT</pubDate>
			<description>Hello Webmasters!!!! 
I am looking to buy established dating websites. Please contact me if you have a dating related site, forum or dating blog for sale with a PR of 3 or higher. 
Feel free to PM me...</description>
			<content:encoded><![CDATA[<div>Hello Webmasters!!!!<br />
I am looking to buy established dating websites. Please contact me if you have a dating related site, forum or dating blog for sale with a PR of 3 or higher.<br />
Feel free to PM me or reply to this post.<br />
<br />
Thanks,<br />
Lindsay</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=40">Websites For Sale</category>
			<dc:creator>bubbalou</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12576</guid>
		</item>
		<item>
			<title>Asp send email</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12575&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 12:56:18 GMT</pubDate>
			<description>I want to send mail from an asp page. The asp page is called from a html page. The sending mail using CDOSYS and CDO is not working properly. When i call the asp page from html page, the script for...</description>
			<content:encoded><![CDATA[<div>I want to send mail from an asp page. The asp page is called from a html page. The sending mail using CDOSYS and CDO is not working properly. When i call the asp page from html page, the script for sending mail in the asp page is getting displayed while running rather than working of the process which i had mentioned in the script to work.<br />
<br />
The runtime problem is that, when the asp file is being called from html file the script is getting displayed rather than the process to get worked.<br />
<br />
<br />
HTML Code<br />
HTML and CSS Syntax (Toggle Plain Text)<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot;&gt;<br />
&lt;meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 6.0&quot;&gt;<br />
&lt;meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.Document&quot;&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;&gt;<br />
 <br />
&lt;/head&gt;<br />
 <br />
&lt;body&gt;<br />
 <br />
&lt;form action=sendmail.asp method=&quot;POST&quot;&gt;<br />
  &lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;T1&quot; size=&quot;20&quot;&gt;&lt;/p&gt;<br />
  &lt;p&gt;&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;B1&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;<br />
  &lt;input type=&quot;reset&quot; value=&quot;Reset&quot; name=&quot;B2&quot;&gt;&lt;/p&gt;<br />
&lt;/form&gt;<br />
 <br />
&lt;/body&gt;<br />
 <br />
&lt;/html&gt;<br />
<br />
ASP File &quot;sendmail.asp&quot; code<br />
*****************************<br />
<br />
HTML and CSS Syntax (Toggle Plain Text)<br />
&lt;html&gt;<br />
 <br />
&lt;head&gt;<br />
&lt;meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 6.0&quot;&gt;<br />
&lt;meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.Document&quot;&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;&gt;<br />
 <br />
&lt;%<br />
 <br />
function sendmail()<br />
{<br />
 <br />
Set myMail=CreateObject(&quot;CDO.Message&quot;)<br />
myMail.Subject=&quot;Sending email with CDO&quot;<br />
myMail.From=&quot;EMAIL REMOVED&quot;<br />
myMail.To=&quot;EMAIL REMOVED&quot;<br />
myMail.TextBody=&quot;This is a message.&quot;<br />
 <br />
        myMail.Configuration.Fields.Item _<br />
		(&quot;http://schemas.microsoft.com/cdo/configuration/smtsperver&quot;) = &quot;smtp.gmail.com&quot;;<br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/smtpserverport&quot;) = 465;<br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;) = 2;<br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&quot;)= 1;<br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/smtpusessl&quot;) = &quot;true&quot;;  <br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/sendusername&quot;) = &quot;EMAIL REMOVED&quot;;<br />
       myMail.Configuration.Fields.Item _<br />
       (&quot;http://schemas.microsoft.com/cdo/configuration/sendpassword&quot;) = &quot;************&quot;; // My gmail password.<br />
myMail.Configuration.Fields.Update<br />
myMail.Send<br />
set myMail=nothing<br />
 <br />
response.write(&quot;&lt;script&gt; alert('Process Successful.')&lt;/script&gt; &quot;);<br />
 <br />
}<br />
%&gt;<br />
&lt;/head&gt; <br />
 <br />
&lt;body&gt; <br />
 <br />
&lt;/body&gt; <br />
 <br />
&lt;/html&gt; <br />
<br />
Kindly help me at the earliest.<br />
<br />
M.Sworna Vidhya</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=50">ASP Forum</category>
			<dc:creator>swornavidhya_m</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12575</guid>
		</item>
		<item>
			<title>Forum Issues, Problem with unread posts</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12550&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 13:22:40 GMT</pubDate>
			<description><![CDATA[Hey, I'm new here and don't have a particularly strong grasp of HTML apart from making basic tables and the such. 
 
I set up a forum for some friends recently, and the server that they are on does...]]></description>
			<content:encoded><![CDATA[<div>Hey, I'm new here and don't have a particularly strong grasp of HTML apart from making basic tables and the such.<br />
<br />
I set up a forum for some friends recently, and the server that they are on does not support the marking of individual posts as being read. The exact response was....<br />
<br />
&quot;The software currently doesn't support read/unread marking of individual messages. What it does is check when you last visited, and mark all posts made since as unread.&quot;<br />
<br />
This is most troublesome for myself and the users of my forum, especially if you don't visit the forum in 2 or 3 days. Then you may have 10 or so threads to sift through, and no way of keeping a tab of what you have read and haven't read, because until you sign out, or press &quot;mark all posts read&quot;, everything stays as unread.<br />
<br />
What I wanted to ask is if there was some kind of script or code using HTML that would tell the forum to mark a post as read once it had been seen. This would make life so much better for everyone using my forum, and we would all be very greatful.<br />
<br />
Hope someone can help, even if it's to say this isn't possible. Any other info anyone needs, just let me know.<br />
<br />
Thanks :)</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>Rumplebeanskin</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12550</guid>
		</item>
		<item>
			<title>Adbrite</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12541&amp;goto=newpost</link>
			<pubDate>Fri, 27 Aug 2010 17:15:22 GMT</pubDate>
			<description>Has anybody got any feedback about Adbrite?</description>
			<content:encoded><![CDATA[<div>Has anybody got any feedback about Adbrite?</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=15">Affiliate Marketing and Reseller Programs</category>
			<dc:creator>gatafish</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12541</guid>
		</item>
		<item>
			<title>Hello All</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12538&amp;goto=newpost</link>
			<pubDate>Thu, 26 Aug 2010 19:50:50 GMT</pubDate>
			<description>Just wanted to properly introduce myself on here. 
 
I am steve (gatafish) and I am not sure I will help too many people on here, but I might need some help. 
 
I am a self-taught web designer who is...</description>
			<content:encoded><![CDATA[<div>Just wanted to properly introduce myself on here.<br />
<br />
I am steve (gatafish) and I am not sure I will help too many people on here, but I might need some help.<br />
<br />
I am a self-taught web designer who is always trying to learn more.<br />
<br />
I will definitely be on this site now that I found it.<br />
<br />
Thanks...</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=23">Introduce Yourself</category>
			<dc:creator>gatafish</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12538</guid>
		</item>
		<item>
			<title>HTML Combo box referencing XML document</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12537&amp;goto=newpost</link>
			<pubDate>Thu, 26 Aug 2010 18:59:18 GMT</pubDate>
			<description>I am trying to add a drop down combobox that will be throughout a website, but would like to populate it only in one document. 
 
I have seen it done once before but cannot figure it out. I am...</description>
			<content:encoded><![CDATA[<div>I am trying to add a drop down combobox that will be throughout a website, but would like to populate it only in one document.<br />
<br />
I have seen it done once before but cannot figure it out. I am wanting to try and keep it in an HTML format if possible.<br />
<br />
I am wanting to populate an XML file for the combobox and just keep the XML updated.<br />
<br />
Thanks for any solutions.</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>gatafish</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12537</guid>
		</item>
		<item>
			<title><![CDATA[Iframe won't display in safari :(]]></title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12536&amp;goto=newpost</link>
			<pubDate>Thu, 26 Aug 2010 10:56:36 GMT</pubDate>
			<description><![CDATA[Hi all, I am constructing a player which uses iframes. Everything works fine in IE, but in safari one of the iframes won't display. I've tried removing the "transparency="true" script but that dosn't...]]></description>
			<content:encoded><![CDATA[<div>Hi all, I am constructing a player which uses iframes. Everything works fine in IE, but in safari one of the iframes won't display. I've tried removing the &quot;transparency=&quot;true&quot; script but that dosn't help, and means it then won't display properly on IE.<br />
<br />
You can seee it at <a href="http://www.joegilbertdesign.co.uk/player/player.htm" rel="nofollow" target="_blank">www.joegilbertdesign.co.uk/player/player.htm</a><br />
<br />
Many Thanks</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>dt86</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12536</guid>
		</item>
		<item>
			<title>embedding videos into site for iphone</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12531&amp;goto=newpost</link>
			<pubDate>Wed, 25 Aug 2010 13:44:07 GMT</pubDate>
			<description><![CDATA[I'm trying to build a site for iphone etc which features a video gallery, but I'm really struggling with this. I've decided to go with youtube embedding as I can't seem to get anything else to work....]]></description>
			<content:encoded><![CDATA[<div>I'm trying to build a site for iphone etc which features a video gallery, but I'm really struggling with this. I've decided to go with youtube embedding as I can't seem to get anything else to work.<br />
<br />
The problem I'm having is either the youtube video is tiny, or when I maximise it the quality goes to pot. I had a go at video lightbox but all that does is open the video fullscreen, which takes you off to youtube when clicked with no way of getting back. <br />
<br />
Please help as this is really bugging me!</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>jg2010</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12531</guid>
		</item>
		<item>
			<title>HTML input question, how do I add an input field to a single URL?</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12529&amp;goto=newpost</link>
			<pubDate>Wed, 25 Aug 2010 00:02:25 GMT</pubDate>
			<description><![CDATA[I have a quick question, I couldn't find anywhere that shows how to use an input to add text to a single URL, or if that's even possible. Any suggestions? Thanks, it's greatly appreciated!! 
 
My...]]></description>
			<content:encoded><![CDATA[<div>I have a quick question, I couldn't find anywhere that shows how to use an input to add text to a single URL, or if that's even possible. Any suggestions? Thanks, it's greatly appreciated!!<br />
<br />
My example:<br />
<br />
I have a url, I want to add an input table to set the value @ the end of the URL.<br />
<br />
<a href="http://www.example.com/?=event_action=yaddayaddayadda20%desiredname=" rel="nofollow" target="_blank">http://www.example.com/?=event_actio...0%desiredname=</a><br />
<br />
I want to add an input field so that I can add a name to the field, and have it post the url with the added name so it looks like this after the input:<br />
<br />
<a href="http://www.example.com/?=event_action=yaddayaddayadda20%desiredname=NameUsedValue" rel="nofollow" target="_blank">http://www.example.com/?=event_actio...=NameUsedValue</a></div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>RF2OOO</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12529</guid>
		</item>
		<item>
			<title>New member</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12528&amp;goto=newpost</link>
			<pubDate>Tue, 24 Aug 2010 23:54:24 GMT</pubDate>
			<description><![CDATA[Hi I'm sebby aka "RF2OOO", rather then some lengthy intro, just google "rf2ooo", and you'll see all you need to know. :D ^5 people]]></description>
			<content:encoded><![CDATA[<div>Hi I'm sebby aka &quot;RF2OOO&quot;, rather then some lengthy intro, just google &quot;rf2ooo&quot;, and you'll see all you need to know. :D ^5 people</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=23">Introduce Yourself</category>
			<dc:creator>RF2OOO</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12528</guid>
		</item>
		<item>
			<title>Hi all....</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12527&amp;goto=newpost</link>
			<pubDate>Tue, 24 Aug 2010 12:54:32 GMT</pubDate>
			<description>Hello my name is nur just wanna say hello. 
 
talk to you soon</description>
			<content:encoded><![CDATA[<div>Hello my name is nur just wanna say hello.<br />
<br />
talk to you soon</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=23">Introduce Yourself</category>
			<dc:creator>nurlaela</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12527</guid>
		</item>
		<item>
			<title>PHP code for selecting data from html table</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12524&amp;goto=newpost</link>
			<pubDate>Sat, 21 Aug 2010 11:09:30 GMT</pubDate>
			<description>Dear All 
 
I would like to develop a php program. The program will like there will be several html text box in a html form. Bellow the text box there will be a simple button name ADD. After filling...</description>
			<content:encoded><![CDATA[<div>Dear All<br />
<br />
I would like to develop a php program. The program will like there will be several html text box in a html form. Bellow the text box there will be a simple button name ADD. After filling the text box when I press the add button all the data will be stored in tabular format bellow the ADD button. Each time I press the ADD button a new table row will be appended containing the text box data. Finally there will be a Submit Button after the table. When I press the submit button all code containing in table will be saved into the database. All this I would like to do using PHP or PHP and Javascript in combine and nothing else. Now I would like to request you all to help me to have a solution of the problem. <br />
<br />
Thanks to you all.:smile2:</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=47">PHP Forum</category>
			<dc:creator>neomn</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12524</guid>
		</item>
		<item>
			<title>mouseover buttons or clickable buttons to move scroll bar</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12523&amp;goto=newpost</link>
			<pubDate>Fri, 20 Aug 2010 15:17:39 GMT</pubDate>
			<description>Hi,  
i have a site with a listing of products displayed in a scrolling div see here: 
http://www.cocoonfurnishings.ca/products/private/product_D.cfm?product_sub_section_id=45 
 
I want the blue...</description>
			<content:encoded><![CDATA[<div>Hi, <br />
i have a site with a listing of products displayed in a scrolling div see here:<br />
<a href="http://www.cocoonfurnishings.ca/products/private/product_D.cfm?product_sub_section_id=45" rel="nofollow" target="_blank">http://www.cocoonfurnishings.ca/prod..._section_id=45</a><br />
<br />
I want the blue arrows beside the scroll box to controll the scrollbar at the bottom. I want the scroll bar to remain visible and functional but when the arrows are clicked or cursored over, the scroll handle would move across the scroll bar and the contents would move.<br />
<br />
there is an explanation of how to do something like what I want at this site:<br />
<a href="http://germ.wordpress.com/2006/04/10/scroll-div-contents-with-javascript/" rel="nofollow" target="_blank">http://germ.wordpress.com/2006/04/10...th-javascript/</a><br />
<br />
however, this is a vertical scroller not horizontal, and i also just couldn't get it to work to begin with.<br />
<br />
i am open to solutions involving css, js, html, or cf.  flash is not an option for this website.<br />
<br />
any help would be greatly appreciated.<br />
<br />
thank you!</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=48">Javascript Forum</category>
			<dc:creator>sutclifd</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12523</guid>
		</item>
		<item>
			<title>How to make the whole table cell clickable?</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12520&amp;goto=newpost</link>
			<pubDate>Thu, 19 Aug 2010 18:42:13 GMT</pubDate>
			<description>Hello, 
 
I am building my HTML page dynamically, I want to make the whole cell clickable but failed to do that, here is the code: 
 
        private string RenderOther(int pageNumber) 
        { 
  ...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am building my HTML page dynamically, I want to make the whole cell clickable but failed to do that, here is the code:<br />
<br />
        private string RenderOther(int pageNumber)<br />
        {<br />
            string templateCell = &quot;&lt;td class=\&quot;PagerOtherPageCells\&quot;&gt;&lt;a class=\&quot;PagerHyperlinkStyle\&quot; href=\&quot;{0}\&quot; &quot; + GetAlternativeText(pageNumber) + &quot; &gt; &quot; + pageNumber.ToString() + &quot; &lt;/a&gt;&lt;/td&gt;&quot;;<br />
            return String.Format(templateCell, Page.ClientScript.GetPostBackClientHyperlink(this, pageNumber.ToString()));<br />
        }<br />
<br />
Currently only the page number in the cell is clickable. I have a background in the cell, so I need to allow user click on any part of the cell's background.<br />
<br />
I tried move the &lt;a&gt; ahead of &lt;td&gt; but no use. I am not familiar with HTML. Thank you in advance. Would be even nicer if I can set this in css file.</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>mdivk</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12520</guid>
		</item>
		<item>
			<title>Problem with Iframe and Tiles Framework</title>
			<link>http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12518&amp;goto=newpost</link>
			<pubDate>Thu, 19 Aug 2010 06:33:58 GMT</pubDate>
			<description>Hi ,  
 
I am having a website which uses tiles framework to layout the website.  
The issue I am facing is that , I have an iframe which actually hits an external URL and does some logic, The...</description>
			<content:encoded><![CDATA[<div>Hi , <br />
<br />
I am having a website which uses tiles framework to layout the website. <br />
The issue I am facing is that , I have an iframe which actually hits an external URL and does some logic, The external URL after the transaction returns the result by hitting the URL of my website. <br />
<br />
When the response comes back, Instead of displaying in the main page, the entire webpage is replicated inside the Iframe. <br />
<br />
In short, If i make an external url request in an iframe and is there any way the response can be redirected to the parent jsp instead of the iframe. The external url is a client website, so , I cannot ask them to change anything in their site, Whatever fix has to be there, I have to do in my pages itself.<br />
<br />
Can you please help me solve this.</div>

]]></content:encoded>
			<category domain="http://www.ahfb2000.com/webmaster_help_desk/forumdisplay.php?f=9">HTML Forum</category>
			<dc:creator>naveenl013</dc:creator>
			<guid isPermaLink="true">http://www.ahfb2000.com/webmaster_help_desk/showthread.php?t=12518</guid>
		</item>
	</channel>
</rss>
