Posts by Nugo Sunes • 45 points
3 posts
-
0
votes1
answer619
viewsQ: Distribute values in column, SQL
I am extracting data from a table with the following query: SELECT [nu-cpf] as CPF, [nome segurado] as NOME, '' as IdentificacaoCliente, '' as CodigoBeneficio, CONCAT([nu-ddd],[nu-telefone])…
-
0
votes1
answer122
viewsQ: How do I perform select list list from the view for the Controller?
I have the following code in my view: @using (Html.BeginForm("DataAniv", "Mailing", FormMethod.Post)) { <div class="form-group"> <label for="sel1">Selecione o mês:</label>…
-
3
votes1
answer4561
viewsQ: How to send FORM values to the Controller in ASP.NET MVC?
I am new to ASP.NET and am creating an MVC application. I have in my controller a method that works as follows: public ActionResult ShowClients(string proc) { --(proc)EXECUTA ALGUMA LOGICA AQUI…