<?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: Running an Ajax ModalPopup from code behind</title>
	<atom:link href="http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/</link>
	<description>Passionate about software development</description>
	<lastBuildDate>Tue, 10 Jan 2012 13:58:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: asp.net, c#,javascript</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-373</link>
		<dc:creator>asp.net, c#,javascript</dc:creator>
		<pubDate>Fri, 30 Sep 2011 08:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-373</guid>
		<description>&lt;strong&gt;asp.net, c#,javascript...&lt;/strong&gt;

[...]Running an Ajax ModalPopup from code behind &#171; Suddenelfilio.net[...]...</description>
		<content:encoded><![CDATA[<p><strong>asp.net, c#,javascript&#8230;</strong></p>
<p>[...]Running an Ajax ModalPopup from code behind &laquo; Suddenelfilio.net[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Hinkle</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-64</link>
		<dc:creator>Greg Hinkle</dc:creator>
		<pubDate>Thu, 11 Feb 2010 23:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-64</guid>
		<description>AWESOME!  Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>AWESOME!  Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yalin</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-63</link>
		<dc:creator>Yalin</dc:creator>
		<pubDate>Sat, 30 Jan 2010 12:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-63</guid>
		<description>Nick you are my man! I had spent hours to have a stupid modal popup to open on page load. Finally it works.</description>
		<content:encoded><![CDATA[<p>Nick you are my man! I had spent hours to have a stupid modal popup to open on page load. Finally it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonny</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-62</link>
		<dc:creator>Jonny</dc:creator>
		<pubDate>Wed, 11 Nov 2009 14:42:33 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-62</guid>
		<description>I&#039;m very thankful for this hint. This also saved me some time.

Cheers</description>
		<content:encoded><![CDATA[<p>I&#8217;m very thankful for this hint. This also saved me some time.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-61</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 30 Jul 2009 22:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-61</guid>
		<description>great little work around.  For those who are looking for some sample code it&#039;s pretty straight forward.

Using a button click event....

protected void btnSubmit_Click(object sender, EventArgs e)
{
// do work here
// assign values if need be to the modal popup
// you do NOT have to assign text value to LinkButton1 -

ModalPopupExtender1.Show();
}

assign all of your modalpopupextender&#039;s TargetControlID=&quot;LinkButton1&quot;

and then run your ok or cancel controlIDs to the buttons/link buttons on your popup


Enjoy :)</description>
		<content:encoded><![CDATA[<p>great little work around.  For those who are looking for some sample code it&#8217;s pretty straight forward.</p>
<p>Using a button click event&#8230;.</p>
<p>protected void btnSubmit_Click(object sender, EventArgs e)<br />
{<br />
// do work here<br />
// assign values if need be to the modal popup<br />
// you do NOT have to assign text value to LinkButton1 -</p>
<p>ModalPopupExtender1.Show();<br />
}</p>
<p>assign all of your modalpopupextender&#8217;s TargetControlID=&#8221;LinkButton1&#8243;</p>
<p>and then run your ok or cancel controlIDs to the buttons/link buttons on your popup</p>
<p>Enjoy <img src='http://www.suddenelfilio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richy Rich</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-60</link>
		<dc:creator>Richy Rich</dc:creator>
		<pubDate>Mon, 02 Mar 2009 16:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-60</guid>
		<description>i have tried the above but i get a jscript runtime error when i click on the link saying that the method is undefined.  i have a number of links on my pages which i want to show the modalpopupextender onclick.

please help</description>
		<content:encoded><![CDATA[<p>i have tried the above but i get a jscript runtime error when i click on the link saying that the method is undefined.  i have a number of links on my pages which i want to show the modalpopupextender onclick.</p>
<p>please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NecroKorn</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-59</link>
		<dc:creator>NecroKorn</dc:creator>
		<pubDate>Sun, 21 Dec 2008 16:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-59</guid>
		<description>Great article, this sounds fantastic, Can you please send me the code so that I can take a look too. Thanks!</description>
		<content:encoded><![CDATA[<p>Great article, this sounds fantastic, Can you please send me the code so that I can take a look too. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ratheesh</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-58</link>
		<dc:creator>Ratheesh</dc:creator>
		<pubDate>Mon, 15 Dec 2008 05:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-58</guid>
		<description>Please send that solution to me....

rethnath@gmail.com</description>
		<content:encoded><![CDATA[<p>Please send that solution to me&#8230;.</p>
<p><a href="mailto:rethnath@gmail.com">rethnath@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Insatiable</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-57</link>
		<dc:creator>Insatiable</dc:creator>
		<pubDate>Thu, 04 Dec 2008 04:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-57</guid>
		<description>Can you send me the code example too?</description>
		<content:encoded><![CDATA[<p>Can you send me the code example too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LijoD</title>
		<link>http://www.suddenelfilio.net/2007/03/23/running-an-ajax-modalpopup-from-code-behind/comment-page-1/#comment-56</link>
		<dc:creator>LijoD</dc:creator>
		<pubDate>Mon, 17 Nov 2008 03:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2007/03/23/running-an-ajax-modalpopup-from-code-behind/#comment-56</guid>
		<description>Can you please send me the code so that I can take a look too. Thanks!</description>
		<content:encoded><![CDATA[<p>Can you please send me the code so that I can take a look too. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

