The following code doesn’t work. The Controller SupportController.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Token.Creator.Site.Models; namespace Token.Creator.Site.Controllers { public class SupportController : Controller { CustomerModel customerModel = new CustomerModel(); public ActionResult Index() { return View(); } [HttpGet] public ActionResult Search(string serialnumber) { var items = S0PinListModel.GetFromList(customerModel.GetS0Pins(serialnumber)); items.Message = "Es konnten [...]
The post razor get not working appeared first on BlogoSfera.