If i have three textboxes in my vb.net webform ..
Textbox1.text=”Sumit”
Textbox2.text=”4-Dec-2010″
Textbox3.text=”1-Jan-2011″
I want if dates selected are in between textbox2 dates and textbox3 dates then textbox1.text=”sumit” else textbox1.text=”No dates”
Put the following in your TextChanged method of your textboxes. Set Textbox1.Text = CheckDates().