SqlDataReader rdr = objCon.GetData("SP_BudgetID");
while (rdr.Read())
{
txtBudgetID.Text = rdr.GetSqlInt(64);
}
i m getting an exception
hw is it possbile to assign values from dataeader to the control like texbox
and i want to assign these value into an array.
wat is the way of doing it