<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu</title>
	<atom:link href="http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/</link>
	<description>Asp.Net development..</description>
	<pubDate>Thu, 11 Mar 2010 14:58:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kris</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-121</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Tue, 02 Mar 2010 18:04:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-121</guid>
		<description>Thanks, that works perfectly!

Another question if you don't mind: how would I trigger this from code behind, ie, without the user clicking a link? What I want to do is look up an email address in a db, and prompt the user to send a mail to the address if it's not found.
I have already made the code to execute and a hidden button, but I don't know how to code the if(addressNotFound){???} part...</description>
		<content:encoded><![CDATA[<p>Thanks, that works perfectly!</p>
<p>Another question if you don&#8217;t mind: how would I trigger this from code behind, ie, without the user clicking a link? What I want to do is look up an email address in a db, and prompt the user to send a mail to the address if it&#8217;s not found.<br />
I have already made the code to execute and a hidden button, but I don&#8217;t know how to code the if(addressNotFound){???} part&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-119</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Sat, 20 Feb 2010 10:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-119</guid>
		<description>@Kris 
Please note that you script part iss wrong.. it should be like following..

function confirmDeleteResult(v,m,f)
{
if( v) //user clicked OK
$('#' + f.hidID).click(); //the delete button id of each row will be passed to this function from the confirm box
}</description>
		<content:encoded><![CDATA[<p>@Kris<br />
Please note that you script part iss wrong.. it should be like following..</p>
<p>function confirmDeleteResult(v,m,f)<br />
{<br />
if( v) //user clicked OK<br />
$(&#8217;#&#8217; + f.hidID).click(); //the delete button id of each row will be passed to this function from the confirm box<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-117</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Sat, 30 Jan 2010 19:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-117</guid>
		<description>Hi, I tried the technique as shown in your article in a Repeater control but it's not working for me. The dialog shows up, but the event handler in the code-behind file is never called.
Any idea?

aspx code:

&lt;!-- Hidden command button that actually issues the delete --&gt;

&lt;asp:LinkButton ID="deleteFile" runat="server" 
CommandArgument=''&gt; 
 Delete
-------------------------------------------------------------
code-behind:

LinkButton linkDelete = (LinkButton)e.Item.FindControl("deleteFile");
            Button btnDelete = (Button)e.Item.FindControl("btnDelete");

            string prompt = "$.prompt('Are you sure you want to delete the selected item?"
                + "'"
                + ", {{buttons: {{ Ok: true, Cancel: false }}, callback: confirmDeleteResult}} ); return false; ";
            linkDelete.Attributes["onclick"] = string.Format(prompt, btnDelete.ClientID);
---------------------------------------------------------
script:

function confirmDeleteResult(v, m, f) {
    if (v) //post back if the user clicked OK
        $('#').click();
}</description>
		<content:encoded><![CDATA[<p>Hi, I tried the technique as shown in your article in a Repeater control but it&#8217;s not working for me. The dialog shows up, but the event handler in the code-behind file is never called.<br />
Any idea?</p>
<p>aspx code:</p>
<p><!-- Hidden command button that actually issues the delete --></p>
<p>&lt;asp:LinkButton ID=&#8221;deleteFile&#8221; runat=&#8221;server&#8221;<br />
CommandArgument=&#8221;&gt;<br />
 Delete<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
code-behind:</p>
<p>LinkButton linkDelete = (LinkButton)e.Item.FindControl(&#8221;deleteFile&#8221;);<br />
            Button btnDelete = (Button)e.Item.FindControl(&#8221;btnDelete&#8221;);</p>
<p>            string prompt = &#8220;$.prompt(&#8217;Are you sure you want to delete the selected item?&#8221;<br />
                + &#8220;&#8216;&#8221;<br />
                + &#8220;, {{buttons: {{ Ok: true, Cancel: false }}, callback: confirmDeleteResult}} ); return false; &#8220;;<br />
            linkDelete.Attributes["onclick"] = string.Format(prompt, btnDelete.ClientID);<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
script:</p>
<p>function confirmDeleteResult(v, m, f) {<br />
    if (v) //post back if the user clicked OK<br />
        $(&#8217;#').click();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-116</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Sat, 16 Jan 2010 14:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-116</guid>
		<description>@venkat. 
Run the demo in IE 8.0 and see.. I just tried and it worked fine.. it may be some other issue..</description>
		<content:encoded><![CDATA[<p>@venkat.<br />
Run the demo in IE 8.0 and see.. I just tried and it worked fine.. it may be some other issue..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-115</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Wed, 13 Jan 2010 07:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-115</guid>
		<description>Hi,

   I am using Asp.net 2005.It is working fine in Firefox.but if try in IE 8. it is not working properly. I do not know the reason.Please can you guide me.

 I am waiting for your response.

Thanks and Regards,
Venkat</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>   I am using Asp.net 2005.It is working fine in Firefox.but if try in IE 8. it is not working properly. I do not know the reason.Please can you guide me.</p>
<p> I am waiting for your response.</p>
<p>Thanks and Regards,<br />
Venkat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-104</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Mon, 26 Oct 2009 19:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-104</guid>
		<description>@Mohinder
Please have a look at the sample shown.. 

http://www.clientsideasp.deynu.com/alerts/Asp-net-jquery-confirm-gridview.aspx

You can simulate a link button using a simple link and input type button.. 
You can easily do the same method in a repeater..</description>
		<content:encoded><![CDATA[<p>@Mohinder<br />
Please have a look at the sample shown.. </p>
<p><a href="http://www.clientsideasp.deynu.com/alerts/Asp-net-jquery-confirm-gridview.aspx" rel="nofollow">http://www.clientsideasp.deynu.com/alerts/Asp-net-jquery-confirm-gridview.aspx</a></p>
<p>You can simulate a link button using a simple link and input type button..<br />
You can easily do the same method in a repeater..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohinder</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-103</link>
		<dc:creator>Mohinder</dc:creator>
		<pubDate>Mon, 26 Oct 2009 18:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-103</guid>
		<description>Hi, The show was absolutely wonderfull but i wonder does it work on linkbutton... because on rendering linkbutton shows a property href="javascript_doPostback" which can cause problem. Please clarify me with code. The linkbutton is in repeater. My email id is mohinder82@gmail.com. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, The show was absolutely wonderfull but i wonder does it work on linkbutton&#8230; because on rendering linkbutton shows a property href=&#8221;javascript_doPostback&#8221; which can cause problem. Please clarify me with code. The linkbutton is in repeater. My email id is <a href="mailto:mohinder82@gmail.com">mohinder82@gmail.com</a>. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ADDBeats</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-99</link>
		<dc:creator>ADDBeats</dc:creator>
		<pubDate>Sun, 30 Aug 2009 12:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-99</guid>
		<description>&lt;strong&gt;Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from ADDBeats...</description>
		<content:encoded><![CDATA[<p><strong>Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu&#8230;</strong></p>
<p>Thank you for submitting this cool story - Trackback from ADDBeats&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binary Web Solutions (I) Pvt. Ltd. Blog &#187; Blog Archive &#187; Amazing List of jQuery Resources</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-95</link>
		<dc:creator>Binary Web Solutions (I) Pvt. Ltd. Blog &#187; Blog Archive &#187; Amazing List of jQuery Resources</dc:creator>
		<pubDate>Tue, 04 Aug 2009 04:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-95</guid>
		<description>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</description>
		<content:encoded><![CDATA[<p>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-94</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Sat, 01 Aug 2009 17:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-94</guid>
		<description>@sean
The following links may be helpful for you to solve the update panel issue.. 
http://forums.asp.net/p/1189519/2039138.aspx

http://forums.asp.net/t/1232120.aspx

http://stackoverflow.com/questions/504464/how-to-show-a-lightbox-dialog-from-an-asp-net-ajax-response

http://imak47.wordpress.com/2008/10/18/jquery-effects-not-working-after-updatepanel-asynchronous-request-is-over/

http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel</description>
		<content:encoded><![CDATA[<p>@sean<br />
The following links may be helpful for you to solve the update panel issue..<br />
<a href="http://forums.asp.net/p/1189519/2039138.aspx" rel="nofollow">http://forums.asp.net/p/1189519/2039138.aspx</a></p>
<p><a href="http://forums.asp.net/t/1232120.aspx" rel="nofollow">http://forums.asp.net/t/1232120.aspx</a></p>
<p><a href="http://stackoverflow.com/questions/504464/how-to-show-a-lightbox-dialog-from-an-asp-net-ajax-response" rel="nofollow">http://stackoverflow.com/questions/504464/how-to-show-a-lightbox-dialog-from-an-asp-net-ajax-response</a></p>
<p><a href="http://imak47.wordpress.com/2008/10/18/jquery-effects-not-working-after-updatepanel-asynchronous-request-is-over/" rel="nofollow">http://imak47.wordpress.com/2008/10/18/jquery-effects-not-working-after-updatepanel-asynchronous-request-is-over/</a></p>
<p><a href="http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel" rel="nofollow">http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-93</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Sat, 01 Aug 2009 17:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-93</guid>
		<description>@sean
i never tried it with AJAX update panels.. for now am in really really busy with some project launch.. i will try to do a AJAX sample may be next week..</description>
		<content:encoded><![CDATA[<p>@sean<br />
i never tried it with AJAX update panels.. for now am in really really busy with some project launch.. i will try to do a AJAX sample may be next week..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amazing List of Jquery Resources &#124; TechArtifact</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-92</link>
		<dc:creator>Amazing List of Jquery Resources &#124; TechArtifact</dc:creator>
		<pubDate>Sat, 01 Aug 2009 11:12:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-92</guid>
		<description>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</description>
		<content:encoded><![CDATA[<p>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 10 most Useful resources for jQuery across the web&#8211;Part 2 &#124; TechArtifact</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-91</link>
		<dc:creator>10 most Useful resources for jQuery across the web&#8211;Part 2 &#124; TechArtifact</dc:creator>
		<pubDate>Sat, 01 Aug 2009 10:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-91</guid>
		<description>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</description>
		<content:encoded><![CDATA[<p>[...] Impromptu: Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-90</link>
		<dc:creator>sean</dc:creator>
		<pubDate>Thu, 23 Jul 2009 15:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-90</guid>
		<description>@jdn. I used the controls inside user control and they functioned well. to do this, u'll av to put the reference for the downloaded .js files i.e jquery.js, jquery-impromptu.2.6.min.js and impromptu.css in the page where ur user controls are loaded. then the function calls itself should be inside the user controls. i.e 

function confirmSubmit()   
{   
$.prompt('Are you sure you want to submit?'  
, {   
buttons: { Ok: true, Cancel: false }   
, callback: confirmSubmitResult   
}   
);</description>
		<content:encoded><![CDATA[<p>@jdn. I used the controls inside user control and they functioned well. to do this, u&#8217;ll av to put the reference for the downloaded .js files i.e jquery.js, jquery-impromptu.2.6.min.js and impromptu.css in the page where ur user controls are loaded. then the function calls itself should be inside the user controls. i.e </p>
<p>function confirmSubmit()<br />
{<br />
$.prompt(&#8217;Are you sure you want to submit?&#8217;<br />
, {<br />
buttons: { Ok: true, Cancel: false }<br />
, callback: confirmSubmitResult<br />
}<br />
);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-89</link>
		<dc:creator>sean</dc:creator>
		<pubDate>Thu, 23 Jul 2009 15:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-89</guid>
		<description>Hi, I tried this control and I think its really cool. the only error I av with it is that it doesnt function properly with ajax update panel. The message shown after postback does not display at all if called within the update panel. Any ideas pleeeeasseee.</description>
		<content:encoded><![CDATA[<p>Hi, I tried this control and I think its really cool. the only error I av with it is that it doesnt function properly with ajax update panel. The message shown after postback does not display at all if called within the update panel. Any ideas pleeeeasseee.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-83</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Fri, 17 Jul 2009 10:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-83</guid>
		<description>@jdn,
if can you send me your code I will check why its not working...</description>
		<content:encoded><![CDATA[<p>@jdn,<br />
if can you send me your code I will check why its not working&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jdn</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-81</link>
		<dc:creator>jdn</dc:creator>
		<pubDate>Thu, 16 Jul 2009 22:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-81</guid>
		<description>Any ideas why this might not work when inside of a user control?

I can get the dialog window to show, but it doesn't fire the click event of the hidden button.</description>
		<content:encoded><![CDATA[<p>Any ideas why this might not work when inside of a user control?</p>
<p>I can get the dialog window to show, but it doesn&#8217;t fire the click event of the hidden button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JQuery fan</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-59</link>
		<dc:creator>JQuery fan</dc:creator>
		<pubDate>Mon, 22 Jun 2009 19:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-59</guid>
		<description>Thank you for this story great.
These messageboxes are beautiful and easy to add to web applications to add some visual experience for the users.
You can use JQuery and ASP.NET in online IDE like coderun.com and share your projects with others. Very usefull.</description>
		<content:encoded><![CDATA[<p>Thank you for this story great.<br />
These messageboxes are beautiful and easy to add to web applications to add some visual experience for the users.<br />
You can use JQuery and ASP.NET in online IDE like coderun.com and share your projects with others. Very usefull.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DotNetShoutout</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-46</link>
		<dc:creator>DotNetShoutout</dc:creator>
		<pubDate>Wed, 17 Jun 2009 22:57:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-46</guid>
		<description>&lt;strong&gt;Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from DotNetShoutout...</description>
		<content:encoded><![CDATA[<p><strong>Showing beautiful message boxes in Asp.Net web forms using JQuery Impromptu&#8230;</strong></p>
<p>Thank you for submitting this cool story - Trackback from DotNetShoutout&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes &#8230;</title>
		<link>http://www.clientsideasp.net/2009/06/16/showing-beautiful-message-boxes-in-aspnet-web-forms-using-jquery-impromptu/#comment-43</link>
		<dc:creator>ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes &#8230;</dc:creator>
		<pubDate>Wed, 17 Jun 2009 01:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=64#comment-43</guid>
		<description>[...] original post here: ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes &#8230;   SHARETHIS.addEntry({ title: "ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes [...]</description>
		<content:encoded><![CDATA[<p>[...] original post here: ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes &#8230;   SHARETHIS.addEntry({ title: &#8220;ClientSideAsp.Net » Blog Archive » Showing beautiful message boxes [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
