I am working on a Umbraco CMS 5 project. I have two Questions:
How to add Controller for a existing View?
Can Data be inserted in Umbraco Database? In example If someone submit his/her information in a webpage then Data will be saved in Umbraco Database(Umbraco.sdf).
return View("~/Views/Umbraco/Your view name.cshtml");
You can create your own custom table in the umbraco.sdf with the columns you need and can submit your information using Sql or linq(if you create an entity).