public void placeShenimet() { Index form = (Index)Context.Handler; int ID = form.SelectedID; ViewState["SelectedID"] = ID; Grupi ex = new Grupi(); GrupiMapper em = new GrupiMapper(ex); em.SelectedID(ID); GrupiTextBox.Text = ex.emriGrupit; KategoriaDropDownList.SelectedValue = ex.KategoriaID.ToString(); }
protected void SaveButton_Click(object sender, EventArgs e) { if (GrupiTextBox.Text.Length == 0) { lblError.Visible = true; GrupiTextBox.Focus(); return; } else { int ID = Convert.ToInt32(ViewState["SelectedID"].ToString()); Grupi ex = new Grupi(); GrupiMapper em = new GrupiMapper(ex); em.SelectedID(ID); ex.emriGrupit = GrupiTextBox.Text; ex.KategoriaID = Int32.Parse(KategoriaDropDownList.DataValueField); em.Update(); Response.Redirect("Index.aspx"); } }