Files
BWPM/App_sik/Controllers/FormController.cs

24 lines
480 B
C#

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