Ejemplo n.º 1
0
        public async Task <ActionResult> Edit(
            [Bind(Include = "Id,ClientOneSolicitor,ClientOneAccountant,ClientOneAdviserOther,ClientTwoSolicitor,ClientTwoAccountant,ClientTwoAdviserOther,CreatedDateTime")] PageThree PageThree)
        {
            if (!ModelState.IsValid)
            {
                return(View(PageThree));
            }
            _db.Entry(PageThree).State = EntityState.Modified;
            await _db.SaveChangesAsync();

            return(RedirectToAction("Edit", "PageFour"));
        }
Ejemplo n.º 2
0
 private void BackTwo_Click(object sender, EventArgs e)
 {
     PageThree.Hide();
     PageTwo.Show();
 }