when i click the calendar on some date i want respective day to be displayed in text box.
example if i click 18th date corresponding day as sunday for example.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Satyapriya NayakPosted Feb 24, 2012, 10:16 PM
If this post helps you mark it as answer
Thanks
Satyapriya NayakPosted Feb 23, 2012, 2:10 AM
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Calender11.WebForm1" %>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace Calender11
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Calendar1_SelectionChanged(object sender, EventArgs e)
{
Label1.Text = "";
foreach (DateTime day in Calendar1.SelectedDates)
{
Label1.Text += day.Date.DayOfWeek + "
";
}
}
}
}
Thanks
If this post helps you mark it as answer