I have a last_Plan_Purchase_Date column in my dataset and I would like to display the last purchased date in lblDate.text. I am wondering how I can display the most current date. As you can see in the below code it always pick the first row eventhough it is not the most current date. please help
lblDate.Text = dsPhlList.Tables("phldetail").Rows(0).Item("Last_Plan_Purchased_Date").ToString()
lblDate.Text = dsPhlList.Tables("phldetail").Rows(0).Item("Last_Plan_Purchased_Date").ToString()