<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FlexiCoder Blog &#187; ASP.Net</title>
	<atom:link href="http://www.flexicoder.com/blog/index.php/category/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexicoder.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 15:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ReturnURL ignoring it</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/05/returnurl-ignoring-it/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/05/returnurl-ignoring-it/#comments</comments>
		<pubDate>Mon, 03 May 2010 12:51:31 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.Net security]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=316</guid>
		<description><![CDATA[If you need to force the user to a particular page, regardless of what the ReturnURL is stating, then use the following code in your Page_Load



        protected void Page_Load(object sender, EventArgs e)
        {
         [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to force the user to a particular page, regardless of what the ReturnURL is stating, then use the following code in your Page_Load</p>
<p><code>
<pre class="brush:csharp">

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack &#038;&#038; !string.IsNullOrEmpty(Request.QueryString["ReturnURL"]))
            {
                //Do this to remove any URL info the user may be trying to get to
                Response.Redirect(@"default.aspx");
            }

        }
</pre>
<p></code></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/05/returnurl-ignoring-it/&title=ReturnURL+ignoring+it&text=If+you+need+to+force+the+user+to+a+particular+page%2C+regardless+of+what+the+ReturnURL+is+stating%2C+then+use+the+following+code+in+your+Page_Load++++++++++++protected+void+Page_Load%28object+sender%2C...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/05/returnurl-ignoring-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS2005 ASP.Net not stopping on breakpoints</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/vs2005-asp-net-not-stopping-on-breakpoints/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/vs2005-asp-net-not-stopping-on-breakpoints/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 20:34:14 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=280</guid>
		<description><![CDATA[If you have IE 8 installed and your ASP.Net project won&#8217;t stop on the breakpoints you&#8217;ve set they you probably need to read this article
You basically need to add an entry to your registry to stop process growth for tabs.
I&#8217;ve copied the steps required below
1)  Open RegEdit
2)  Browse to HKEY_LOCALMACHINE -> SOFTWARE -> [...]]]></description>
			<content:encoded><![CDATA[<p>If you have IE 8 installed and your ASP.Net project won&#8217;t stop on the breakpoints you&#8217;ve set they you probably need to read this <a href="http://weblogs.asp.net/abdullaabdelhaq/archive/2009/06/01/VS-Debug-Problem-with-IE8.aspx">article</a></p>
<p>You basically need to add an entry to your registry to stop process growth for tabs.</p>
<p>I&#8217;ve copied the steps required below</p>
<p>1)  Open RegEdit<br />
2)  Browse to HKEY_LOCALMACHINE -> SOFTWARE -> Microsoft -> Internet Explorer -> Main<br />
3)  Add a dword under this key called TabProcGrowth<br />
4)  Set TabProcGrowth to 0</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/vs2005-asp-net-not-stopping-on-breakpoints/&title=VS2005+ASP.Net+not+stopping+on+breakpoints&text=If+you+have+IE+8+installed+and+your+ASP.Net+project+won%26%238217%3Bt+stop+on+the+breakpoints+you%26%238217%3Bve+set+they+you+probably+need+to+read+this+article+You+basically+need+to+add+an+entry+to+your...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/vs2005-asp-net-not-stopping-on-breakpoints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web.Config allow access to certain paths</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/07/webconfig-allow-access-to-certain-paths/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/07/webconfig-allow-access-to-certain-paths/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:00:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.Net security]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=47</guid>
		<description><![CDATA[If you&#8217;ve locked down access to your website but what your login page to pick up a stylesheet from a sub folder then you need to a add a location tag to your web.config to grant access
&#60;location path="Styles"&#62;
    &#60;system.web&#62;
        &#60;authorization&#62;
            &#60;allow users="*" /&#62;
        &#60;/authorization&#62;
    &#60;/system.web&#62;
&#60;/location&#62;
&#60;location path="Images"&#62;
    &#60;system.web&#62;
        &#60;authorization&#62;
            &#60;allow users="*" /&#62;
        &#60;/authorization&#62;
    &#60;/system.web&#62;
&#60;/location&#62;
Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve locked down access to your website but what your login page to pick up a stylesheet from a sub folder then you need to a add a location tag to your web.config to grant access</p>
<pre class="brush: xml; first-line: 10;">&lt;location path="Styles"&gt;
    &lt;system.web&gt;
        &lt;authorization&gt;
            &lt;allow users="*" /&gt;
        &lt;/authorization&gt;
    &lt;/system.web&gt;
&lt;/location&gt;
&lt;location path="Images"&gt;
    &lt;system.web&gt;
        &lt;authorization&gt;
            &lt;allow users="*" /&gt;
        &lt;/authorization&gt;
    &lt;/system.web&gt;
&lt;/location&gt;</pre>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/07/webconfig-allow-access-to-certain-paths/&title=Web.Config+allow+access+to+certain+paths&text=If+you%26%238217%3Bve+locked+down+access+to+your+website+but+what+your+login+page+to+pick+up+a+stylesheet+from+a+sub+folder+then+you+need+to+a+add+a+location+tag+to+your+web.config+to+grant+access...&tags=%E2%A0%E2%A0%E2%A0%E2%A0%E2%A0%E2%A0%E2%A0+authorization%2C+location" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/07/webconfig-allow-access-to-certain-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specify file name for file from handler</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/06/specify-file-name-for-file-from-handler/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/06/specify-file-name-for-file-from-handler/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 14:24:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=45</guid>
		<description><![CDATA[When returning content to a user from a generic handler use the the AddHeader method to specify the filename


context.Response.ContentType = "text/comma-separated-values";
context.Response.AddHeader("content-disposition", "attachment; filename=PrinterDirect.CSV");

Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>When returning content to a user from a generic handler use the the AddHeader method to specify the filename</p>
<p><code>
<pre class="brush: c#">
context.Response.ContentType = "text/comma-separated-values";
context.Response.AddHeader("content-disposition", "attachment; filename=PrinterDirect.CSV");</pre>
<p></code></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/06/specify-file-name-for-file-from-handler/&title=Specify+file+name+for+file+from+handler&text=When+returning+content+to+a+user+from+a+generic+handler+use+the+the+AddHeader+method+to+specify+the+filename+++context.Response.ContentType+%3D+%22text%2Fcomma-separated-values%22%3B...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/06/specify-file-name-for-file-from-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Event Handler Signatures</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/04/creating-event-handler-signatures/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/04/creating-event-handler-signatures/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 10:43:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C# 3.5]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=40</guid>
		<description><![CDATA[In Visual Studio 2008 you&#8217;ve lost the abillity to click on the drop down in the code behind and see all the event signatures that are available but haven&#8217;t handled yet. To get the signature you are after without using the properites in the desinger you can type&#8230;

this.

As you hit the . all methods and [...]]]></description>
			<content:encoded><![CDATA[<p>In Visual Studio 2008 you&#8217;ve lost the abillity to click on the drop down in the code behind and see all the event signatures that are available but haven&#8217;t handled yet. To get the signature you are after without using the properites in the desinger you can type&#8230;</p>
<p><code><br />
this.<br />
</code></p>
<p>As you hit the . all methods and events should appear, pick the event you after e.g. Load</p>
<p>Then add type <code>+=</code> after the event name and press TAB TAB, the event is automatically generated. ASP.Net auto wires the events with the correct name and signature so you should be able to delete the line of code that binds the event.</p>
<p>Check out <a href="http://www.keithelder.net/blog/archive/2008/07/07/Creating-Event-Handlers-in-C-The-Definitive-Guide.aspx">this article</a> for more info.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/04/creating-event-handler-signatures/&title=Creating+Event+Handler+Signatures&text=In+Visual+Studio+2008+you%26%238217%3Bve+lost+the+abillity+to+click+on+the+drop+down+in+the+code+behind+and+see+all+the+event+signatures+that+are+available+but+haven%26%238217%3Bt+handled+yet.&tags=the+event%2C+event" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/04/creating-event-handler-signatures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Control Remove Span</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/03/server-control-remove-span/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/03/server-control-remove-span/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 10:07:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=38</guid>
		<description><![CDATA[Normally when you write a server control, .Net automatically wraps the output with a span and the Id of the control. Depending on your CSS this can cause rendering issues. You can use the following technique to prevent the span from being rendered.


public override void RenderBeginTag(HtmlTextWriter writer)
{
    using (HtmlTextWriter blankOne = new [...]]]></description>
			<content:encoded><![CDATA[<p>Normally when you write a server control, .Net automatically wraps the output with a span and the Id of the control. Depending on your CSS this can cause rendering issues. You can use the following technique to prevent the span from being rendered.<br />
<code></p>
<pre class="brush: c#">
public override void RenderBeginTag(HtmlTextWriter writer)
{
    using (HtmlTextWriter blankOne = new HtmlTextWriter(new System.IO.StringWriter()))
    {
        base.RenderBeginTag(blankOne);
    }
}
public override void RenderEndTag(HtmlTextWriter writer)
{
}</pre>
<p></code></p>
<p>It basically writes out the open tag to a new HTML Writer and therefore is not part of the final rendered HTML</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/03/server-control-remove-span/&title=Server+Control+Remove+Span&text=Normally+when+you+write+a+server+control%2C+.Net+automatically+wraps+the+output+with+a+span+and+the+Id+of+the+control.+Depending+on+your+CSS+this+can+cause+rendering+issues.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/03/server-control-remove-span/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SessionId &#8211; keeping it the same</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/02/sessionid-keeping-it-the-same/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/02/sessionid-keeping-it-the-same/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 10:31:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C# 3.5]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=36</guid>
		<description><![CDATA[If you don&#8217;t populate a value in the session of a page then the session Id will reset everytime the page is loaded.


protected void Page_PreInit(object sender, EventArgs e)
{
    //Need this line otherwise it resets the Session Id everytime!
    Session["keepme"] = "True";
}


Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t populate a value in the session of a page then the session Id will reset everytime the page is loaded.<br />
<code></p>
<pre class="brush: c#">
protected void Page_PreInit(object sender, EventArgs e)
{
    //Need this line otherwise it resets the Session Id everytime!
    Session["keepme"] = "True";
}
</pre>
<p></code></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/02/sessionid-keeping-it-the-same/&title=SessionId+%26%238211%3B+keeping+it+the+same&text=If+you+don%26%238217%3Bt+populate+a+value+in+the+session+of+a+page+then+the+session+Id+will+reset+everytime+the+page+is+loaded.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/02/sessionid-keeping-it-the-same/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Codes</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/02/html-codes/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/02/html-codes/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 16:01:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=32</guid>
		<description><![CDATA[The following article lists all of the HTML codes that can be used in a web page to represent special characters.
Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>The following <a href="http://www.ascii.cl/htmlcodes.htm">article</a> lists all of the HTML codes that can be used in a web page to represent special characters.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/02/html-codes/&title=HTML+Codes&text=The+following+article+lists+all+of+the+HTML+codes+that+can+be+used+in+a+web+page+to+represent+special+characters.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/02/html-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Render Image using Generic Handler ASP.Net</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/01/render-image-using-generic-handler-aspnet/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/01/render-image-using-generic-handler-aspnet/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:27:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C# 3.5]]></category>
		<category><![CDATA[ashx]]></category>
		<category><![CDATA[.Net code]]></category>
		<category><![CDATA[Image]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=24</guid>
		<description><![CDATA[The following code uses a property from an object that returns a byte array that contains an image.


public void ProcessRequest(HttpContext context)
{
    context.Response.ContentType = "image/jpg";
    if (context.Request.Params["Id"] != null)
    {
        Content selectedImage = new Content(Convert.ToInt32(context.Request.Params["Id"].ToString()));
      [...]]]></description>
			<content:encoded><![CDATA[<p>The following code uses a property from an object that returns a byte array that contains an image.</p>
<p><code>
<pre class="brush:c#">
public void ProcessRequest(HttpContext context)
{
    context.Response.ContentType = "image/jpg";
    if (context.Request.Params["Id"] != null)
    {
        Content selectedImage = new Content(Convert.ToInt32(context.Request.Params["Id"].ToString()));
        if (context.Request.Params["t"] == "D")
        {
            context.Response.OutputStream.Write(selectedImage.ImageDetails.FullImage, 0, selectedImage.ImageDetails.FullImage.Length);
        }
        else
        {
            context.Response.OutputStream.Write(selectedImage.ImageDetails.ThumbnailImage, 0, selectedImage.ImageDetails.ThumbnailImage.Length);
        }
    }
}</pre>
<p></code></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/01/render-image-using-generic-handler-aspnet/&title=Render+Image+using+Generic+Handler+ASP.Net&text=The+following+code+uses+a+property+from+an+object+that+returns+a+byte+array+that+contains+an+image.+++public+void+ProcessRequest%28HttpContext+context%29+%7B+++++context.Response.ContentType+%3D+%22image%2Fjpg%22%3B...&tags=selectedimage+imagedetails%2C+context+request%2C+context%2C+selectedimage" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/01/render-image-using-generic-handler-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download content rather than view it in a Browser</title>
		<link>http://www.flexicoder.com/blog/index.php/2008/12/download-content-rather-than-view-it-in-a-browser/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2008/12/download-content-rather-than-view-it-in-a-browser/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 17:01:00 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[.Net code]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=11</guid>
		<description><![CDATA[Add the following line to ensure the user is prompted to download a file

Response.AddHeader "content-disposition","attachment; filename=fname.ext"

Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>Add the following line to ensure the user is prompted to download a file</p>
<p><code>
<pre>Response.AddHeader "content-disposition","attachment; filename=fname.ext"</pre>
<p></code></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2008/12/download-content-rather-than-view-it-in-a-browser/&title=Download+content+rather+than+view+it+in+a+Browser&text=Add+the+following+line+to+ensure+the+user+is+prompted+to+download+a+file++Response.AddHeader+%22content-disposition%22%2C%22attachment%3B+filename%3Dfname.ext%22+...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2008/12/download-content-rather-than-view-it-in-a-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
