What would be the correct syntax to accomplish the second line in this sequence?
SqlDataSource1.SelectCommand = "SELECT * FROM [TravelRequests] WHERE (datesubmitted between @startdate and @enddate) ORDER BY [TravelID] DESC"
SqlDataSource1.SelectParameters.Add("@startdate", SqlDbType.Date).Value = From_TextBox.Text
Thanks
Go to the complete details ...