Your question isn't quite clear but if I understand correctly you want to display the DB values where the display text and the value are equal to the currently selected ones in the dropdownlist? Here it goes:
string connString = "YOUR CONNECTION STRING HERE";
using(SqlConnection conn = new SqlConnection(connString))
{
string queryString = "SELECT * FROM someTable WHERE SomeID=@SomeID, SomeText=@SomeText";
SqlCommand comm = new SqlCommand(queryString, conn);
comm.Parameters.AddWithValue("SomeID", youridvaluehere);
comm.Parameters.AddWithValue("SomeText", yourtextvaluehere);
SqlDataAdapter da = new SqlDataAdapter(comm);
DataTable ds = new DataTable();
da.Fill(ds);
GridView1.DataBind();
}
Now call this code on SelectedIndexChanged event of the dropdownlist.
Regards.