<?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>Ajax Updates &#187; Calendar Web</title>
	<atom:link href="http://www.ajaxupdates.com/tag/calendar-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxupdates.com</link>
	<description>Latest Ajax Scripts, Examples, News and other Ajax related stuff</description>
	<lastBuildDate>Fri, 12 Feb 2010 12:46:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ASP.NET Calendar Control and Yahoo.UI.Calendar</title>
		<link>http://www.ajaxupdates.com/asp-net-calendar-control-and-yahoo-ui-calendar/</link>
		<comments>http://www.ajaxupdates.com/asp-net-calendar-control-and-yahoo-ui-calendar/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 12:46:50 +0000</pubDate>
		<dc:creator>alyaspk</dc:creator>
				<category><![CDATA[Ajax Calendar Scripts]]></category>
		<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Application Developments]]></category>
		<category><![CDATA[Asp Calendar]]></category>
		<category><![CDATA[Asp Net]]></category>
		<category><![CDATA[Asp Web]]></category>
		<category><![CDATA[Aspx]]></category>
		<category><![CDATA[Business Application]]></category>
		<category><![CDATA[Calendar Asp]]></category>
		<category><![CDATA[Calendar Control]]></category>
		<category><![CDATA[Calendar Web]]></category>
		<category><![CDATA[Data Entry]]></category>
		<category><![CDATA[Date Of Birth]]></category>
		<category><![CDATA[Demo Application]]></category>
		<category><![CDATA[Demo Project]]></category>
		<category><![CDATA[Popup Calendar]]></category>
		<category><![CDATA[Recruitment System]]></category>
		<category><![CDATA[Ui Calendar]]></category>
		<category><![CDATA[Web Application]]></category>
		<category><![CDATA[Yahoo Calendar]]></category>
		<category><![CDATA[Yahoo Net]]></category>
		<category><![CDATA[Zip File]]></category>

		<guid isPermaLink="false">http://www.ajaxupdates.com/?p=1932</guid>
		<description><![CDATA[The Calendar control becomes an essential control for business application developments since the most of data entry forms used to have one or more field for Date value. Let’s say! we are working on a page called “Candidate Resume Entry” of Recruitment System. There will be some date fields such as “Date of Birth of [...]


Related Listings:<ol><li><a href='http://www.ajaxupdates.com/week-calendar-using-jquery/' rel='bookmark' title='Permanent Link: Week Calendar using Jquery'>Week Calendar using Jquery</a> <small>A jquery plugin providing a weekly view of calendar events....</small></li>
<li><a href='http://www.ajaxupdates.com/vla-calendar-version-2-0/' rel='bookmark' title='Permanent Link: VLA Calendar version 2.0'>VLA Calendar version 2.0</a> <small>The Vista-like Ajax Calendar (vlaCalendar) version 2 is a unobtrusive...</small></li>
<li><a href='http://www.ajaxupdates.com/mootools-ajax-calendar-vista-like/' rel='bookmark' title='Permanent Link: Mootools Ajax Calendar (Vista-Like)'>Mootools Ajax Calendar (Vista-Like)</a> <small>Vista-like Ajax calendar is an unobtrusive, slick calendar script which...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Calendar control becomes an essential control for business application developments since the most of data entry forms used to have one or more field for Date value. Let’s say! we are working on a page called “Candidate Resume Entry” of Recruitment System. There will be some date fields such as “Date of Birth of Candidate”, “Resume Submitted Date” in that page. The calendar control needed to be used in that page. Okay. Let me stop talking about this here as I know you already know how calendar control is important for your project.</p>
<p>There are three sections in this article and each section has two parts called “Running the demo project” and “Lab“. First, you can see how it looks like by running the demo application. Then, if you wanna use this control in your project, you can read the details in “Lab”.</p>
<p>The following topics will be covered in this article.</p>
<p>    * Using ASP.NET Calendar Control in ASP.NET Project<br />
    * Showing ASP.NET Calendar Control in Popup Window<br />
    * Using Yahoo.UI.Calendar Control in ASP.NET Project</p>
<p>Note:</p>
<p>   1. I’d highly recommend you to download the demo project before start reading this article.<br />
   2. Even thought there are three different sections in my article, you can feel free to skip any section and move on to the next section that you wanna read.</p>
<p>Thanks. Hopefully, you may find it useful.<br />
Using ASP.NET Calendar Control in ASP.NET Project</p>
<p>This section is created only for beginners who haven’t used ASP.NET Calendar in Web Project. Feel free to skip this section if you already know about it.<br />
Running the sample</p>
<p>1. Download and extract the zip file.<br />
2. Set SimpleCalendar.aspx as start page.<br />
3. Run the web application.<br />
You will see the result as below if you click “…” button nearly Date Of Birth TextBox.</p>
<p>4. If you choose a date from Calendar Control then the selected date will be shown in TextBox and this calendar will be disappeared.</p>
<p>Do you wanna try this code in your owned project?<br />
<strong>Lab: Using ASP.NET Control in ASP.NET Project</strong></p>
<p>1. Create one ASP.NET Web Project (C#)<br />
2. Place TextBox and Button in WebForm</p>
<pre class="brush: php">&lt;asp :TextBox ID=&quot;txtDOB&quot; Runat=&quot;server&quot;&gt;
&lt;/asp&gt;
&lt;asp :Button ID=&quot;btnDOB&quot; Runat=&quot;server&quot; Text=&quot;...&quot;&gt;
&lt;/asp&gt;
</pre>
<p>3. Add Calendar control to WebForm.</p>
<pre class="brush: php">&lt;asp :calendar id=&quot;cdrCalendar&quot; runat=&quot;server&quot;
backcolor=&quot;#ffffff&quot; width=&quot;250px&quot; height=&quot;200px&quot;
font-size=&quot;12px&quot; font-names=&quot;Arial&quot; borderwidth=&quot;2px&quot;
bordercolor=&quot;#000000&quot; nextprevformat=&quot;shortmonth&quot;
daynameformat=&quot;firsttwoletters&quot;
&lt;strong&gt;Visible=&quot;False&quot;&gt;
&lt;todaydaystyle ForeColor=&quot;White&quot;
BackColor=&quot;Black&quot;&gt;&lt;/todaydaystyle&gt;
&lt;nextprevstyle Font-Size=&quot;12px&quot; Font-Bold=&quot;True&quot;
ForeColor=&quot;#333333&quot;&gt;  &lt;/nextprevstyle&gt;
&lt;dayheaderstyle Font-Size=&quot;12px&quot;
Font-Bold=&quot;True&quot;&gt;
&lt;/dayheaderstyle&gt;
&lt;titlestyle Font-Size=&quot;14px&quot; Font-Bold=&quot;True&quot;
BorderWidth=&quot;2px&quot; ForeColor=&quot;#000055&quot;&gt;
&lt;/titlestyle&gt;
&lt;othermonthdaystyle ForeColor=&quot;#CCCCCC&quot;&gt;
&lt;/othermonthdaystyle&gt;
</pre>
<p>4. Add the following codes in Button Click Event</p>
<pre class="brush: javascript">try{
if(txtDOB.Text.Trim() != &quot;&quot;)
cdrCalendar.SelectedDate =
Convert.ToDateTime(txtDOB.Text);
}
catch
{}
//showing the calendar.
cdrCalendar.Visible= true;
</pre>
<p>5. Add the following codes in SelectionChanged Event of Calendar</p>
<pre class="brush: javascript">//displaying the selected date in TextBox
txtDOB.Text = cdrCalendar.SelectedDate.ToString();
//hiding the calendar.
cdrCalendar.Visible= false;
</pre>
<p>Finally, run your web application. You will see the same result as the demo.</p>
<p>Demo: <a href="http://www.codeproject.com/KB/aspnet/aspnet-yahoouicalendar/Yahoo_UI_Calender_in_ASPNET.PNG">http://www.codeproject.com/KB/aspnet/aspnet-yahoouicalendar/Yahoo_UI_Calender_in_ASPNET.PNG</a><br />
Download: <a href="http://www.codeproject.com/KB/aspnet/aspnet-yahoouicalendar/WebCalendarTest.zip">http://www.codeproject.com/KB/aspnet/aspnet-yahoouicalendar/WebCalendarTest.zip</a><br />
Source: <a href="http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar</a></p>
<p></asp></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fwww.ajaxupdates.com%2Fasp-net-calendar-control-and-yahoo-ui-calendar%2F', 'ASP.NET+Calendar+Control+and+Yahoo.UI.Calendar')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fwww.ajaxupdates.com%2Fasp-net-calendar-control-and-yahoo-ui-calendar%2F', title: '+ASP.NET+Calendar+Control+and+Yahoo.UI.Calendar+' })"/></div>

<p>Related Listings:<ol><li><a href='http://www.ajaxupdates.com/week-calendar-using-jquery/' rel='bookmark' title='Permanent Link: Week Calendar using Jquery'>Week Calendar using Jquery</a> <small>A jquery plugin providing a weekly view of calendar events....</small></li>
<li><a href='http://www.ajaxupdates.com/vla-calendar-version-2-0/' rel='bookmark' title='Permanent Link: VLA Calendar version 2.0'>VLA Calendar version 2.0</a> <small>The Vista-like Ajax Calendar (vlaCalendar) version 2 is a unobtrusive...</small></li>
<li><a href='http://www.ajaxupdates.com/mootools-ajax-calendar-vista-like/' rel='bookmark' title='Permanent Link: Mootools Ajax Calendar (Vista-Like)'>Mootools Ajax Calendar (Vista-Like)</a> <small>Vista-like Ajax calendar is an unobtrusive, slick calendar script which...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ajaxupdates.com/asp-net-calendar-control-and-yahoo-ui-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gaia Calendar Web App</title>
		<link>http://www.ajaxupdates.com/gaia-calendar-web-app/</link>
		<comments>http://www.ajaxupdates.com/gaia-calendar-web-app/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 19:07:57 +0000</pubDate>
		<dc:creator>alyaspk</dc:creator>
				<category><![CDATA[Ajax Calendar Scripts]]></category>
		<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Asp Net]]></category>
		<category><![CDATA[Bandwidth]]></category>
		<category><![CDATA[Building Blocks]]></category>
		<category><![CDATA[Calendar Web]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Gaia]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Repeater]]></category>
		<category><![CDATA[Source Asp]]></category>
		<category><![CDATA[Tabcontrol]]></category>
		<category><![CDATA[Webcontrol]]></category>

		<guid isPermaLink="false">http://www.ajaxupdates.com/?p=980</guid>
		<description><![CDATA[Gaia Ajax is an Open Source Ajax Library for ASP.NET. It uses the ASP.NET WebControl model which means most controls are 100% compatible with existing controls and you can leverage all of your existing knowledge. Gaia is extremly efficient bandwidth-wise, much easier to use and your code will be a lot easier to maintain since [...]


Related Listings:<ol><li><a href='http://www.ajaxupdates.com/deferred-content-loading/' rel='bookmark' title='Permanent Link: Deferred content loading'>Deferred content loading</a> <small>When rolled into the page life cycle of an ASP.NET...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Gaia Ajax is an Open Source Ajax Library for ASP.NET. It uses the ASP.NET WebControl model which means most controls are 100% compatible with existing controls and you can leverage all of your existing knowledge. Gaia is extremly efficient bandwidth-wise, much easier to use and your code will be a lot easier to maintain since it&#8217;s all in managed code. This has a lot of reasons but one of the most important ones is that you don&#8217;t have to use JavaScript at all to develop Gaia Ajax Applications.<br />
<strong>The Markup:</strong></p>
<pre class="brush: php">&lt; %@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot;
    MasterPageFile=&quot;~/GaiaTestMasterPage.master&quot;
    Title=&quot;Gaia Ajax Samples - ASP.NET Ajax the way it should have been&quot;
    CodeFile=&quot;ComplexControls.aspx.cs&quot;
    Inherits=&quot;GaiaSamples.ComplexControls&quot; %&gt;

&lt; %@ Register Src=&quot;~/UserControls/QuickSurvey.ascx&quot; TagName=&quot;QuickSurvey&quot; TagPrefix=&quot;survey&quot; %&gt;
&lt; %@ Register Src=&quot;~/UserControls/CalendarApplication.ascx&quot; TagName=&quot;CalendarApplication&quot; TagPrefix=&quot;calendar&quot; %&gt;

&lt;asp :Content
    ID=&quot;Content1&quot;
    ContentPlaceHolderID=&quot;ContentPlaceHolder1&quot;
    Runat=&quot;Server&quot;&gt;
&lt;/asp&gt;</pre>
<h3>ASP.NET Ajax the way it should have been</h3>
<p>
        Gaia Ajax is an <em>Open Source Ajax Library for ASP.NET</em>. It uses the ASP.NET WebControl model<br />
        which means most controls are 100% compatible with existing controls and you can leverage all of your existing knowledge.<br />
        Gaia is extremly efficient bandwidth-wise, much easier to use and your code will be a lot easier to maintain since it&#8217;s<br />
        all in managed code. This has a lot of reasons but one of the most important ones is that <strong>you don&#8217;t have<br />
        to use JavaScript at all</strong> to develop Gaia Ajax Applications.
    </p>
<p align="left"><strong>Demo</strong>: <a href="http://samples.gaiaware.net/ComplexControls.aspx"> http://samples.gaiaware.net/ComplexControls.aspx</a></p>
<p align="left"><em>Source: <a href="http://samples.gaiaware.net/ComplexControls.aspx"> http://samples.gaiaware.net/ComplexControls.aspx</a></em></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fwww.ajaxupdates.com%2Fgaia-calendar-web-app%2F', 'Gaia+Calendar+Web+App')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fwww.ajaxupdates.com%2Fgaia-calendar-web-app%2F', title: '+Gaia+Calendar+Web+App+' })"/></div>

<p>Related Listings:<ol><li><a href='http://www.ajaxupdates.com/deferred-content-loading/' rel='bookmark' title='Permanent Link: Deferred content loading'>Deferred content loading</a> <small>When rolled into the page life cycle of an ASP.NET...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ajaxupdates.com/gaia-calendar-web-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->