using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace sf1.Controllers { public class FormController : Controller { public IActionResult Index() { return View(); } public IActionResult Save(string firstname, string lastname) { ViewBag.daten = firstname + lastname; return View(); } } }