<?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: Using jQuery to enhance ASP.NET AJAX progress indication</title>
	<atom:link href="http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/feed/" rel="self" type="application/rss+xml" />
	<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/</link>
	<description>ASP.NET and AJAX code, ideas, and examples.</description>
	<lastBuildDate>Wed, 16 May 2012 23:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Dorababu</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-69423</link>
		<dc:creator>Dorababu</dc:creator>
		<pubDate>Mon, 14 May 2012 11:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-69423</guid>
		<description>How can I apply validation to some of the fields and show the progress if the form is valid only</description>
		<content:encoded><![CDATA[<p>How can I apply validation to some of the fields and show the progress if the form is valid only</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62890</link>
		<dc:creator>ming</dc:creator>
		<pubDate>Tue, 14 Feb 2012 00:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62890</guid>
		<description>Dave,
Thank you for getting back to me. I finally got it to work with Shail&#039;s example. the only thing is that his example blocks the whol screen instead of partial of the screen. I&#039;ll try to get this one to work for me when i have more time to work on it. But it works for what i need to do at this time. Again, than you for your post.</description>
		<content:encoded><![CDATA[<p>Dave,<br />
Thank you for getting back to me. I finally got it to work with Shail&#8217;s example. the only thing is that his example blocks the whol screen instead of partial of the screen. I&#8217;ll try to get this one to work for me when i have more time to work on it. But it works for what i need to do at this time. Again, than you for your post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62873</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Sat, 11 Feb 2012 06:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62873</guid>
		<description>The problem there is going to be that &lt;code&gt;&lt;%= Save.ClientID %&gt;&lt;/code&gt; and &lt;code&gt;&lt;%= EntryForm.ClientID %&gt;&lt;/code&gt; can&#039;t be resolved to their values in an external JavaScript file, because it doesn&#039;t run through the ASP.NET engine like an ASPX file does. Take a look at some of the other suggestions in the comments on the robust ASP.NET control referencing post I linked earlier. Using a CSS class is one way, or if you don&#039;t mind the performance hit, you can use the &quot;ends with&quot; selector.</description>
		<content:encoded><![CDATA[<p>The problem there is going to be that <code>< %= Save.ClientID %></code> and <code>< %= EntryForm.ClientID %></code> can&#8217;t be resolved to their values in an external JavaScript file, because it doesn&#8217;t run through the ASP.NET engine like an ASPX file does. Take a look at some of the other suggestions in the comments on the robust ASP.NET control referencing post I linked earlier. Using a CSS class is one way, or if you don&#8217;t mind the performance hit, you can use the &#8220;ends with&#8221; selector.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62842</link>
		<dc:creator>Ming</dc:creator>
		<pubDate>Tue, 07 Feb 2012 21:27:56 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62842</guid>
		<description>Dave,
I really appreciate that you take your time to help us to get the code to work after all these time. 
Can you confirm that if my thought is correct? I should NOT put the default.js which contains Sys.Application.add_init() in the master page, right? I’m referencing the 2 jquery files in the master page file and the default.js in the page that is using master page uses this BlockUI plug in. Is it correct?
I updated your recommended code as followings and was able to move further but still having problem at the line in the Save_Click() function. 
&lt;pre lang=&quot;javascript&quot;&gt;
Sys.Application.add_init(AppInit());

function AppInit() {
    $.blockUI.defaults.css = {};
    $addHandler($get(&#039;&lt;%= Save.ClientID %&gt;&#039;), &#039;click&#039;, Save_Click());
}

function Save_Click() {
    $($get(&#039;#&lt;%= EntryForm.ClientID %&gt;&#039;)).block({ message: null });
}
&lt;/pre&gt;
I’m using VS 2010 and I can step through the code in the updated default.js and jquery.blockUI.js. I got an error at  this.style.zoom = 1 in the code shown bellow from jquery.blockUI.js.
&lt;pre lang=&quot;javascript&quot;&gt;
// plugin method for blocking element content
$.fn.block = function(opts) {
    return this.each(function() {
        if ($.css(this,&#039;position&#039;) == &#039;static&#039;)
            this.style.position = &#039;relative&#039;;
        if ($.browser.msie) 
            this.style.zoom = 1; // force &#039;hasLayout&#039;
        install(this, opts);
    });
};
&lt;/pre&gt;
Can you please take another look please? I felt that I&#039;m really close. I can sent you my zipped project file if you do not mind.

Thank you so much!!!</description>
		<content:encoded><![CDATA[<p>Dave,<br />
I really appreciate that you take your time to help us to get the code to work after all these time.<br />
Can you confirm that if my thought is correct? I should NOT put the default.js which contains Sys.Application.add_init() in the master page, right? I’m referencing the 2 jquery files in the master page file and the default.js in the page that is using master page uses this BlockUI plug in. Is it correct?<br />
I updated your recommended code as followings and was able to move further but still having problem at the line in the Save_Click() function.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">Sys.<span style="color: #660066;">Application</span>.<span style="color: #660066;">add_init</span><span style="color: #009900;">&#40;</span>AppInit<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> AppInit<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $.<span style="color: #660066;">blockUI</span>.<span style="color: #660066;">defaults</span>.<span style="color: #660066;">css</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
    $addHandler<span style="color: #009900;">&#40;</span>$get<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;%= Save.ClientID %&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'click'</span><span style="color: #339933;">,</span> Save_Click<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> Save_Click<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span>$get<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#&lt;%= EntryForm.ClientID %&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">block</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> message<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">null</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>I’m using VS 2010 and I can step through the code in the updated default.js and jquery.blockUI.js. I got an error at  this.style.zoom = 1 in the code shown bellow from jquery.blockUI.js.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// plugin method for blocking element content</span>
$.<span style="color: #660066;">fn</span>.<span style="color: #660066;">block</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>opts<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>$.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'position'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">'static'</span><span style="color: #009900;">&#41;</span>
            <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">style</span>.<span style="color: #660066;">position</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'relative'</span><span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>$.<span style="color: #660066;">browser</span>.<span style="color: #660066;">msie</span><span style="color: #009900;">&#41;</span> 
            <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">style</span>.<span style="color: #660066;">zoom</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// force 'hasLayout'</span>
        install<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span> opts<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Can you please take another look please? I felt that I&#8217;m really close. I can sent you my zipped project file if you do not mind.</p>
<p>Thank you so much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62834</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:58:33 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62834</guid>
		<description>That&#039;s probably indicating that the BlockUI plugin&#039;s JavaScript hasn&#039;t been included on the page (or hasn&#039;t been &lt;em&gt;yet&lt;/em&gt; when that code&#039;s running).</description>
		<content:encoded><![CDATA[<p>That&#8217;s probably indicating that the BlockUI plugin&#8217;s JavaScript hasn&#8217;t been included on the page (or hasn&#8217;t been <em>yet</em> when that code&#8217;s running).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62833</link>
		<dc:creator>Ming</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62833</guid>
		<description>My error is JScript runtime error: $.blockUI.defaults is null or not an obj at the line of $.blockUI.defaults.css = {};</description>
		<content:encoded><![CDATA[<p>My error is JScript runtime error: $.blockUI.defaults is null or not an obj at the line of $.blockUI.defaults.css = {};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62832</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62832</guid>
		<description>The code in my previous comment would replace the entire &lt;code&gt;$(document).ready()&lt;/code&gt; block. If you&#039;re using &lt;code&gt;add_init&lt;/code&gt;, then it would need to be updated like this:

&lt;pre lang=&quot;javascript&quot;&gt;Sys.Application.add_init(AppInit);
 
function AppInit() {
  $.blockUI.defaults.css = {};
 
  $addHandler($get(&#039;&lt;%= Save.ClientID %&gt;&#039;), &#039;click&#039;, Save_Click);
}
 
function Save_Click() {
  $(&#039;#&lt;%= EntryForm.ClientID %&gt;&#039;).block({ message: null });
}&lt;/pre&gt;

That assumes your controls are still named Save and EntryForm on your master page. If not, be sure to modify that accordingly.

It also assumes that this code is inline in an ASPX page, so the ASP.NET expressions can be resolved. If not, there are a variety of other ways to tame the ClientID issue (be sure to read the comments): http://encosia.com/robust-aspnet-control-referencing-in-javascript/</description>
		<content:encoded><![CDATA[<p>The code in my previous comment would replace the entire <code>$(document).ready()</code> block. If you&#8217;re using <code>add_init</code>, then it would need to be updated like this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">Sys.<span style="color: #660066;">Application</span>.<span style="color: #660066;">add_init</span><span style="color: #009900;">&#40;</span>AppInit<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> AppInit<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  $.<span style="color: #660066;">blockUI</span>.<span style="color: #660066;">defaults</span>.<span style="color: #660066;">css</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
  $addHandler<span style="color: #009900;">&#40;</span>$get<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;%= Save.ClientID %&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'click'</span><span style="color: #339933;">,</span> Save_Click<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> Save_Click<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#&lt;%= EntryForm.ClientID %&gt;'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">block</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> message<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">null</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>That assumes your controls are still named Save and EntryForm on your master page. If not, be sure to modify that accordingly.</p>
<p>It also assumes that this code is inline in an ASPX page, so the ASP.NET expressions can be resolved. If not, there are a variety of other ways to tame the ClientID issue (be sure to read the comments): <a href="http://encosia.com/robust-aspnet-control-referencing-in-javascript/" rel="nofollow">http://encosia.com/robust-aspnet-control-referencing-in-javascript/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62831</link>
		<dc:creator>Ming</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62831</guid>
		<description>Great post! I got it to work like a charm without using the master page. does the solution you provided here for the master page issue replace the whole Sys.Application.add_init routine? some how my error went away. but the progress image does not show up neither. 
Thank you so much on helping us.
Ming</description>
		<content:encoded><![CDATA[<p>Great post! I got it to work like a charm without using the master page. does the solution you provided here for the master page issue replace the whole Sys.Application.add_init routine? some how my error went away. but the progress image does not show up neither.<br />
Thank you so much on helping us.<br />
Ming</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62830</link>
		<dc:creator>Ming</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62830</guid>
		<description>This is not really true from my experience. the update panel requires the script manager to be using before itself.</description>
		<content:encoded><![CDATA[<p>This is not really true from my experience. the update panel requires the script manager to be using before itself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ming</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-62829</link>
		<dc:creator>Ming</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-62829</guid>
		<description>I have exactly the same problem. can you show me how did you fixed the problem. the code works like a charm without master page. but failed when using the with master page. I used Dave&#039;s solution the error went away but the progress bar is not showing. Thank you so much.</description>
		<content:encoded><![CDATA[<p>I have exactly the same problem. can you show me how did you fixed the problem. the code works like a charm without master page. but failed when using the with master page. I used Dave&#8217;s solution the error went away but the progress bar is not showing. Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-46731</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Fri, 21 Oct 2011 21:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-46731</guid>
		<description>&lt;code&gt;$get&lt;/code&gt; doesn&#039;t support a full range of selectors. it&#039;s basically just a &lt;code&gt;document.getElementById&lt;/code&gt; shortcut. Use jQuery&#039;s selector engine instead:

&lt;pre lang=&quot;javascript&quot;&gt;$(&#039;#UpdatePanel1 input&#039;).click(function() {
...
});&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p><code>$get</code> doesn&#8217;t support a full range of selectors. it&#8217;s basically just a <code>document.getElementById</code> shortcut. Use jQuery&#8217;s selector engine instead:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#UpdatePanel1 input'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
...
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: mosy</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-46729</link>
		<dc:creator>mosy</dc:creator>
		<pubDate>Fri, 21 Oct 2011 21:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-46729</guid>
		<description>What if want for every button in updatepanel ? at this case $get(&#039;#UpdatePanel1 input&#039;) selector doesn&#039;t work . 

&lt;pre lang=&quot;javascript&quot;&gt;  $addHandler($get(&#039;#UpdatePanel1 input&#039;), &#039;click&#039;, function () {
  ...
  });&lt;/pre&gt;

I appreciate any help</description>
		<content:encoded><![CDATA[<p>What if want for every button in updatepanel ? at this case $get(&#8216;#UpdatePanel1 input&#8217;) selector doesn&#8217;t work .</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">  $addHandler<span style="color: #009900;">&#40;</span>$get<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#UpdatePanel1 input'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'click'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  ...
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I appreciate any help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: retv</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-45152</link>
		<dc:creator>retv</dc:creator>
		<pubDate>Mon, 29 Aug 2011 02:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-45152</guid>
		<description>Friend some example based on a master page and translated it does not work any ideas</description>
		<content:encoded><![CDATA[<p>Friend some example based on a master page and translated it does not work any ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: retv</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-45144</link>
		<dc:creator>retv</dc:creator>
		<pubDate>Sun, 28 Aug 2011 18:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-45144</guid>
		<description>regards
I have tried to emulate this example by changing the calendar month of an object and I worked here as I am using

in webform

&lt;pre lang=&quot;x&quot;&gt;
&lt;div id=&quot;EntryForm&quot;&gt;
 &lt;asp:Calendar ID=&quot;Calendar1&quot; runat=&quot;server&quot; 
                    BackColor=&quot;White&quot; 
                    
                    Width=&quot;100%&quot; 
                    ForeColor=&quot;Black&quot; 
                    Height=&quot;400px&quot; 
                    Font-Size=&quot;X-Small&quot; 
                    Font-Names=&quot;Verdana&quot;
                    BorderColor=&quot;White&quot; 
                    Font-Bold=&quot;True&quot; 
                    ShowNextPrevMonth=&quot;False&quot;&gt;
                    &lt;TodayDayStyle BackColor=&quot;#CCCCCC&quot; Font-Size=&quot;X-Small&quot;&gt;&lt;/TodayDayStyle&gt;
                    &lt;DayHeaderStyle Font-Size=&quot;X-Small&quot; Font-Bold=&quot;True&quot;&gt;&lt;/DayHeaderStyle&gt;
                    &lt;SelectedDayStyle ForeColor=&quot;White&quot; BackColor=&quot;#333399&quot;&gt;&lt;/SelectedDayStyle&gt;
             &lt;/asp:Calendar&gt;
      &lt;/div&gt;
&lt;asp:LinkButton ID=&quot;LinkButton1&quot; runat=&quot;server&quot; onclick=&quot;LinkButton1_Click&quot;&gt;LinkButton&lt;/asp:LinkButton&gt;
  &lt;asp:UpdatePanel runat=&quot;server&quot; ID=&quot;up1&quot;&gt;
    &lt;Triggers&gt;
      &lt;asp:AsyncPostBackTrigger ControlID=&quot;Save&quot; /&gt;
    &lt;/Triggers&gt;
    &lt;ContentTemplate&gt;
      &lt;asp:Panel runat=&quot;server&quot; ID=&quot;ConfirmSave&quot; Visible=&quot;false&quot;&gt;
        &lt;h3&gt;&lt;asp:Literal runat=&quot;server&quot; ID=&quot;CustomerName&quot; /&gt; added.&lt;/h3&gt;
      &lt;/asp:Panel&gt;
    &lt;/ContentTemplate&gt;
  &lt;/asp:UpdatePanel&gt;

&lt;/pre&gt;

in code c#

&lt;pre lang=&quot;x&quot;&gt;
this.Calendar1.VisibleDate = new DateTime(DateTime.Now.Year, VarMonth, 1, 0, 0, 1);
&lt;/pre&gt;

Greetings and thanks</description>
		<content:encoded><![CDATA[<p>regards<br />
I have tried to emulate this example by changing the calendar month of an object and I worked here as I am using</p>
<p>in webform</p>

<div class="wp_syntax"><div class="code"><pre class="x" style="font-family:monospace;">&lt;div id=&quot;EntryForm&quot;&gt;
 &lt;asp:Calendar ID=&quot;Calendar1&quot; runat=&quot;server&quot; 
                    BackColor=&quot;White&quot; 
&nbsp;
                    Width=&quot;100%&quot; 
                    ForeColor=&quot;Black&quot; 
                    Height=&quot;400px&quot; 
                    Font-Size=&quot;X-Small&quot; 
                    Font-Names=&quot;Verdana&quot;
                    BorderColor=&quot;White&quot; 
                    Font-Bold=&quot;True&quot; 
                    ShowNextPrevMonth=&quot;False&quot;&gt;
                    &lt;TodayDayStyle BackColor=&quot;#CCCCCC&quot; Font-Size=&quot;X-Small&quot;&gt;&lt;/TodayDayStyle&gt;
                    &lt;DayHeaderStyle Font-Size=&quot;X-Small&quot; Font-Bold=&quot;True&quot;&gt;&lt;/DayHeaderStyle&gt;
                    &lt;SelectedDayStyle ForeColor=&quot;White&quot; BackColor=&quot;#333399&quot;&gt;&lt;/SelectedDayStyle&gt;
             &lt;/asp:Calendar&gt;
      &lt;/div&gt;
&lt;asp:LinkButton ID=&quot;LinkButton1&quot; runat=&quot;server&quot; onclick=&quot;LinkButton1_Click&quot;&gt;LinkButton&lt;/asp:LinkButton&gt;
  &lt;asp:UpdatePanel runat=&quot;server&quot; ID=&quot;up1&quot;&gt;
    &lt;Triggers&gt;
      &lt;asp:AsyncPostBackTrigger ControlID=&quot;Save&quot; /&gt;
    &lt;/Triggers&gt;
    &lt;ContentTemplate&gt;
      &lt;asp:Panel runat=&quot;server&quot; ID=&quot;ConfirmSave&quot; Visible=&quot;false&quot;&gt;
        &lt;h3&gt;&lt;asp:Literal runat=&quot;server&quot; ID=&quot;CustomerName&quot; /&gt; added.&lt;/h3&gt;
      &lt;/asp:Panel&gt;
    &lt;/ContentTemplate&gt;
  &lt;/asp:UpdatePanel&gt;</pre></div></div>

<p>in code c#</p>

<div class="wp_syntax"><div class="code"><pre class="x" style="font-family:monospace;">this.Calendar1.VisibleDate = new DateTime(DateTime.Now.Year, VarMonth, 1, 0, 0, 1);</pre></div></div>

<p>Greetings and thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajax waiting page &#124; 当我不能够再拥有,唯一可以做的,就是</title>
		<link>http://encosia.com/using-jquery-to-enhance-aspnet-ajax-progress-indication/#comment-42642</link>
		<dc:creator>Ajax waiting page &#124; 当我不能够再拥有,唯一可以做的,就是</dc:creator>
		<pubDate>Thu, 24 Mar 2011 19:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=694#comment-42642</guid>
		<description>[...] http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/   This entry was posted in AJAX, ASP.Net, JQuery. Bookmark the permalink.    &#8592; Write log event in&#160;DNN   LikeBe the first to like this post. [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/" rel="nofollow">http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/</a>   This entry was posted in AJAX, ASP.Net, JQuery. Bookmark the permalink.    &larr; Write log event in&nbsp;DNN   LikeBe the first to like this post. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

