Posts by Gustavo Correia • 168 points
20 posts
-
1
votes0
answers213
viewsQ: ASP.NET MVC on linux (mod_Mono, apache)
I’m trying to run my ASP.NET MVC application on a Centos 7 system. After installing mono and checking that I can run using XSP, I’m having trouble setting up mod_mono on apache. Currently giving the…
-
0
votes1
answer1752
viewsQ: Performing the Submit Form using C#
There is the following HTML login form <form action="/Home/Login?ReturnUrl=%2f" method="post"> <input name="__RequestVerificationToken" type="hidden"…
-
0
votes1
answer224
viewsQ: Login from an external system using ASP.NET MVC
I need to implement a form of my system (written in ASP.NET MVC) to log in from an external system to which I do not have the source code. This external system uses the same users of my system. How…
-
2
votes1
answer174
viewsQ: Null value is going to the ajax error function - ASP.NET MVC
I am developing a ZIP consultation page where sending and feedback information is done in ajax: $.ajax({ url: "@Url.Action("PesquisarCEP", "CEP")" + "?cep" + retirarMascara($("#dsCEP").val()), type:…
-
0
votes1
answer893
viewsQ: how to get the value of a specific checkbox in Asp.net mvc using Jquery
I have a table on an ASP.NET MVC system that each record has a checkbox, here’s the code below the view: <table class="table table-hover table-striped" id="tabelaProdutos"> <thead>…
-
1
votes1
answer799
viewsQ: How to take the selection out of a dropdownlist using jQuery?
I’m not so familiar with jQuery, I’d like to know how to get the attribute selected dropdownlist using jQuery?
-
0
votes4
answers1048
viewsA: Should every algorithm be finite?
I believe that every algorithm is finite yes, since even in a situation where the program runs infinitely, some error or the operating system itself can cause a halt. The difference is that the…
-
3
votes3
answers19310
viewsA: Alternatives for developing in C# on Linux?
Unfortunately, I do not know a better solution for development in Mono than Mono Develop. Mono is the implementation of the platform . NET for linux, and that serves as the basis for Xamarin as…
-
0
votes1
answer223
viewsA: Jquery datatable appears with the result of previous searches when filtering
Solved, the problem is that the function "Datatable" should be initialized with uppercase letter, instead of minuscule, as the example below: tabela = $('#tabelaProdutos').DataTable({ "bBootstrap":…
-
0
votes1
answer186
viewsA: Error while writing data from some tables via application
Solved, the problem was a stored Procedure that was looping and consuming all the tempdb memory
-
1
votes1
answer685
viewsA: Load datepicker into modal
Try this solution: <input type="text" value="" class="form-control" placeholder="00/00/0000" id="dia2" /> Javascript: $("#dia2").datepicker({ dateFormat: 'dd/mm/yy', dayNames: ['Domingo',…
-
0
votes1
answer186
viewsQ: Error while writing data from some tables via application
I have an application in Asp.net mvc that, among other functions, registers personal data of customers. We recently switched the database access from one server to another, which has a copy of the…
-
1
votes1
answer43
viewsA: Programs and/or extensions that "decompile" Dlls from an ASP site
I use the Ilspy, it is very good and until today I had no problems with it: http://ilspy.net/
-
0
votes1
answer223
viewsQ: Jquery datatable appears with the result of previous searches when filtering
I have a search page made in ASP.NET MVC that has the data loaded in a table using AJAX and jQuery Template, to not need to reload the page after the search. Follow the example below: function…
-
0
votes2
answers84
viewsA: Why does the new instance of Actionlistener receive a parenthesis and a ;(semicolon) at the end?
The name of this is anonymous class. Actionlistener is an interface, so it needs to be implemented through a concrete class. When an interface needs to be implemented as an internal class in a…
-
1
votes1
answer41
viewsQ: Give preference to results that have the parameter passed in the Entity Framework
I am trying to implement a data solution that displays first the values that have the parameter passed to then pass the other parameters. Example: In a product table has the following data:…
-
0
votes2
answers60
viewsA: Datepicker not render next months?
This article helped me a lot: http://www.linhadecodigo.com.br/artigo/3604/calendario-em-jquery-criando-calendarios-com-datepicker.aspx…
-
1
votes3
answers5814
viewsA: Datetime Picker in Portuguese
Try creating Datepìcker like this: $(".calendarioHora").datepicker({ dateFormat: 'dd/mm/yy', dayNames: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado', 'Domingo'], dayNamesMin:…
-
0
votes2
answers2656
viewsA: What is a compiler?
Compiler is software that takes a source file and analyzes the syntax of the source code. If the source code is right, it will turn the source code into a machine language (or an intermediate…
compilationanswered Gustavo Correia 168 -
0
votes1
answer311
viewsQ: Sort the Table by the value closest to the parameter passed in stored procedures
how to sort a table according to the approximate value of a parameter passed in a stored previous Ex: let’s say that in a table the name field has the following values: Tiago, Iago and Thiago and I…