protected void dgStation_ItemCommand(object source, DataGridCommandEventArgs e)
 {
     Label lbl = (Label)e.Item.FindControl("lblIDs");
     ids = int.Parse(lbl.Text);
     ServiceReference1.Service1Client sr = new ServiceReference1.Service1Client();
     ServiceReference1.get_Station_By_ID_Result station = sr.get_Station_By_ID(ids);
     txtNamestation.Text = station.Station_Name.ToString();
     txtLong.Text = station.Longtitude.Value.ToString();
     txtLa.Text = station.Latitude.ToString();
     lo = double.Parse(station.Longtitude.ToString());
     la = double.Parse(station.Latitude.ToString());
     name = station.Station_Name;
     if (station.Status.ToString() == "Active")
     {
         rbtn1.Checked = true;
         rbtn2.Checked = false;
     }
     else
     {
         rbtn1.Checked = false;
         rbtn2.Checked = true;
     }
     Button1.Visible = false;
     Button2.Visible = true;
     Button3.Visible = true;
     btnCancel.Visible = true;
     txtNamestation.ReadOnly = true;
 }