skip to Main Content

Asp.net – Access different form element value

In an action, can I access different form element value? For example I have 3 forms, first form contains common element. <form id="commonSurname"> <input type="text" id="surname" name="surname" /> </form> <form id="person1" asp-action="getPerson1" method="post"> <input type="text" id="name1" name="name1" /> <input type="submit"…

VIEW QUESTION

NLog override level use JSON configuration

I have Asp.NET Core application that uses a third-party library that outputs messages with the INFO information level: _logger.LogInformation("About information..."); This is about how the log display is configured (I use a JSON configuration): { "NLog": { "targets": { "console":…

VIEW QUESTION
Back To Top
Search