Click here to Skip to main content
15,880,543 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
dear friends,

I have two textboxes with calendar extenders with it on my asp.net page.

First Textbox is Issued Date and second textbox is Expiry Date.

if i select the Issue date from calendar as 11/05/2013 for Expiry date i should not select the previous date.

Only further dates must be selected for expiry date.

Expiry date will be based on Issued Date.

can you please help me.

thanks in @dvance
Posted
Comments
Sandeep Mewara 11-May-13 5:59am    
So, try out.
2 options:
1. On selection of a date, compare with issued date and raise a message if it is before issued date.
2. disable the dates before the issued date so that it cannot be selected.
Bikash Prakash Dash 11-May-13 9:49am    
So wots problem
try as Sandeep Mewara suggested ,
or do you have any problem in coding? .

1 solution

C#
protected void TextBox2_TextChanged(object sender, EventArgs e)
{
        DateTime date1 = Convert.ToDateTime(TextBox1.Text);
        DateTime date2 = Convert.ToDateTime(TextBox2.Text);
        int result = DateTime.Compare(date1, date2);
        if (result > 0)
        {
            Response.Write("<script type='text/javascript'>");
            Response.Write("alert('not valid');");
            Response.Write("</script>");
        }
}
 
Share this answer
 
Comments
Member 14678842 4-Mar-20 20:46pm    
How to add issue date and expiry date in form and display it when the admin approves the form

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900