Embed Javascript to C# code to create a popup window : Calendar « Asp Control « ASP.Net






Embed Javascript to C# code to create a popup window


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Select Date</title>
    <script language="javascript">
        function SetDate(dateToSet)
        {
            controlName = window.location.search.substr(1).substring(8);

            window.opener.document.forms[0].elements[controlName].value = dateToSet;

            self.close();
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:Calendar ID="calDefault" 
                  runat="server" 
                  BackColor="White" 
                  BorderColor="#999999" 
                  CellPadding="4" 
                  DayNameFormat="Shortest" 
                  Font-Names="Verdana" 
                  Font-Size="8pt" 
                  ForeColor="Black" 
                  Height="100%" 
                  Width="100%" 
                  OnDayRender="calDefault_DayRender" >
        <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
        <SelectorStyle BackColor="#CCCCCC" />
        <WeekendDayStyle BackColor="#FFFFCC" />
        <OtherMonthDayStyle ForeColor="#808080" />
        <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
        <NextPrevStyle VerticalAlign="Bottom" />
        <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
        <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
    </asp:Calendar>
    </div>
    </form>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Default : System.Web.UI.Page
{
  protected void calDefault_DayRender(object sender, DayRenderEventArgs e)
  {
    HyperLink link = new HyperLink();
    LiteralControl lc = (LiteralControl)e.Cell.Controls[0];
    link.Text = lc.Text;
    link.NavigateUrl = "javascript:SetDate('" + e.Day.Date.ToShortDateString() + "');";
    e.Cell.Controls.Clear();
    e.Cell.Controls.Add(link);
  }
}

 








Related examples in the same category

1.Change Calendar selection based on data from the database (VB.net)
2.Calendar selected value changed event (VB.net)
3.Assign today's date to asp calendar (VB.net)
4.Set asp calendar border (VB.net)
5.Calendar Control: day name format, first day of week (VB.net)
6.Calendar Control: nextprevformat (VB.net)
7.Calendar Control: titleformat (VB.net)
8.Controlling the Appearance of Individual Cells of Dates (VB.net)
9.Calendar control: on day render (VB.net)
10.Formatting Date Sections in a Calendar Control (VB.net)
11.Date Selection event in a Calendar Control (VB.net)
12.Formatting the Header Styles in a Calendar Control (VB.net)
13.On visible month changed event for a calendar control (VB.net)
14.Setting Custom Previous and Next Month Text in the Calendar Control (VB.net)
15.Reading Selected Dates in a Date Range through the Calendar Control (VB.net)
16.Allowing the Selection of Multiple Dates in a Calendar Control (VB.net)
17.Displaying a Date in the Calendar Control (VB.net)
18.Displaying a Selected Range of Dates in the Calendar Control (VB.net)
19.Basic Calendar Control: show grid lines, show day header (VB.net)
20.On Date and Month Selection Changed (VB.net)
21.Select a week (VB.net)
22.Convert selected date from asp:Calendar to long string (VB.net)
23.Selected value change envent for asp:Calendar (VB.net)
24.Get selected date from asp:Calendar (VB.net)
25.Calendar with TodayDayStyle, SelectorStyle, NextPrevStyle, and SelectedDayStyle (C#)
26.Calendar control in code behind (C#)
27.Load event in calendar selection event (C#)
28.Define and use calendar in code behind (C#)
29.Popup calendar
30.Calendar events: render and change events
31.Visible month changed event
32.Day renderer
33.Calendar selection changed event
34.Calendar selection mode: DayWeekMonth
35.Calendar selection mode: Day
36.Calendar selection mode: DayWeek
37.Add control to Calendar cell
38.Set TodayDayStyle: background color and foreground color
39.Set DayStyle, NextPrevStyle, DayHeaderStyle, TitleStyle, WeekendDayStyle
40.Change size of Calendar
41.Check the range of Calendar controls