there can be some time when AJAX tab control will open the default tab after postback in some other tab here is a sinple solution for it.
Write a javascript function
function OnChanged(sender, args) {
sender.get_clientStateField().value = sender.saveClientState();
}
Call this in TabContainer like.
<Ajax:TabContainer runat="server" EnableViewState="true" OnClientActiveTabChanged="OnChanged">
and you are done.
Happy Coding.
• Objective C • Iphone / I Pad Programming • .Net Framework 3.5 • C#.net • VB.net • SQL Server 2008 • SQL Server 2005 • Java Script • SQL Server 2000 • .NET framework 2.0 • Visual Studio 2005 • Dot Net Nuke 5.0.1 • Community server 2008.5 • HTML • AJAX • Visual Studio 2008 • XML • Microsoft Office SharePoint Server 2007 • Visual Studio 2003 • .Net Framework 1.1 • Twitter API • Action Script 3.0 . Teligent Community 5
Wednesday, February 17, 2010
Monday, February 15, 2010
creating week view calendar.
here is a very simple week view calendar in C#.net
Now for the srever side events
You are done with Weekly calendar :)
Happy coding.
<table cellspacing="0" cellpadding="2" border="0" style="border: 1px solid White; width: 640px; height: 390px; font-size: 9pt; font-family: Verdana; color: Black; background-color: White; border-collapse: collapse;" title="Calendar" id="ctl00_content_ctl00_fragment_2698_ctl00_Calendar1"> <tbody> <tr> <td style="border: 4px solid Black; background-color: White;" colspan="7"> <table cellspacing="0" border="0" style="color: rgb(51, 51, 153); font-family: Verdana; font-size: 12pt; font-weight: bold; width: 100%; border-collapse: collapse;"> <tbody> <tr> <td valign="bottom" style="color: rgb(51, 51, 51); font-size: 8pt; font-weight: bold; width: 15%;"> <asp:linkbutton id="lbtnPrev" runat="server" onclick="lbtnPrev_Click">Previous</asp:linkbutton> </td> <td align="center" style="width: 70%;"> <asp:literal runat="server" id="ltMomthYear"></asp:literal> </td> <td valign="bottom" align="right" style="color: rgb(51, 51, 51); font-size: 8pt; font-weight: bold; width: 15%;"> <asp:linkbutton id="lbtnNext" runat="server" onclick="lbtnNext_Click">Next</asp:linkbutton> </td> </tr> </tbody> </table> </td> </tr> <tr> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Monday"> Mon </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Tuesday"> Tue </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Wednesday"> Wed </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Thursday"> Thu </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Friday"> Fri </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Saturday"> Sat </th> <th align="center" style="font-size: 8pt; font-weight: bold;" scope="col" abbr="Sunday"> Sun </th> </tr> <tr> <asp:literal runat="server" id="ltDays"></asp:literal> </tr> </tbody> </table>
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) loadCurrentWeek(DateTime.Now); } private void loadCurrentWeek(DateTime dateofWeek) { StringBuilder sb = new StringBuilder(); DayOfWeek day = dateofWeek.DayOfWeek; int days = day - DayOfWeek.Monday; DateTime start = dateofWeek.AddDays(-days); DateTime end = start.AddDays(6); ViewState["start"] = start; ViewState["end"] = end; ltMomthYear.Text = start.ToString("ddd dd MMM") + " to " + end.ToString("ddd dd MMM"); for (int i = start.Day; i <= end.Day; i++) { sb.Append("<td align='center' style='color: Black; width: 14%;'>"); sb.Append("<a href='javascript:void(0);'>"); sb.Append(i); sb.Append("</a>"); sb.Append("</td>"); } ltDays.Text = sb.ToString(); } protected void lbtnNext_Click(object sender, EventArgs e) { if (ViewState["end"] != null) { DateTime dt = Convert.ToDateTime(ViewState["end"]); DateTime next = dt.AddDays(1); loadCurrentWeek(next); } } protected void lbtnPrev_Click(object sender, EventArgs e) { if (ViewState["start"] != null) { DateTime dt = Convert.ToDateTime(ViewState["start"]); DateTime prev = dt.AddDays(-2); loadCurrentWeek(prev); } }
You are done with Weekly calendar :)
Happy coding.
Subscribe to:
Posts (Atom)