You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
543 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Calendar2" Assembly="obout_Calendar2_NET" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
txtDate.Attributes.Add("onchange", "document.getElementById('" + hiddenDate.ClientID + "').value = this.value;");
}
}
// method 1 - Get the date value using the "Request" object
protected void btnSendRequest_Click(object sender, EventArgs e)
{
lDate.Text = "The selected date is:" + Request["txtDate"];