protected void Page_Load(object sender, EventArgs e) { int id = int.Parse(Request.QueryString["id"]); ProductType pt = ProductTypeController.GetProductTypeById(id); oldType.Text = pt.Name; oldDesc.Text = pt.Description; }