Posts by Jhonatas Silva • 54 points
15 posts
-
0
votes0
answers560
viewsQ: Ajax request with JSON type parameter using Jquery 1.8.2
I am trying to make an ajax request that sends a list of objects, but it seems that in this version of Jquery 1.8.2 (I cannot update because the system is legacy and has many features using this…
-
0
votes0
answers135
viewsQ: Recover Partial View values for Parent View
I’m developing a screen in Aspnet Mvc where I have an index screen that has a model called Parametrizacaovm and on that screen I have a partialView that displays the drives (which is a…
-
0
votes0
answers25
viewsQ: How to change the Model data being shown in Gridmvc?
I have a Gridmvc in my form where displays a list of units, in this grid has a text field, and a checkbox, I would like when the user type some text box or catch the check, this change reflected in…
-
0
votes1
answer3215
viewsQ: Error creating an application with create-React-app
I installed the create-React-app all right, but when tried to create a project using the command create-React-app hello-world of the following error:…
-
0
votes0
answers87
viewsQ: Datepicker update dates according to return of an ajax
I want to display a calendar with only some dates enabled, I make an ajax request that returns me an array with the dates I want to enable, the function I have today is similar to this example here…
-
0
votes0
answers93
viewsQ: Make a CSS responsive
I am developing a system with Asp.Net Mvc using bootstrap, but I want to give a different "face" to my login screen, I created a css but I would like to make it responsive, does anyone know how to…
-
1
votes1
answer144
viewsQ: Launch an MVC application through a Windows Service
I have an application that was developed in the DDD standard, which uses dependency injection, it works normally, however I needed to add a Windows Service type project that will start the…
-
0
votes2
answers157
viewsA: Create a Join between two classes in my repository
Follow an example using Linq: var result = from x in PessoaCadastro join y in Pessoas on new { X1 = x.PessoaId } equals new { X1 = y.PessoaId } where x.PessoaTipo == 1 select y; return…
-
1
votes1
answer82
viewsQ: Create a Windows Service that calls an MVC
Good people, I already have a project in the DDD model, which runs through a MVC project, only now I want the application to run as a windows service, has some practical way for it? Method in MVC I…
-
0
votes1
answer195
viewsA: Create a list and insert the sheet data into the database when importing
Face the Datatable consumes too much memory feature, you can create a class only with the properties of the file you want to pesistir in the database, and use the A list to store the type of your…
-
0
votes2
answers3337
viewsQ: Rename Visual Studio solution folder
I did all the procedure to change the namespace name of my project, this all neat already compiling and everything, only when I go in the file explorer the folders are with the old name and can’t…
visual-studioasked Jhonatas Silva 54 -
0
votes1
answer259
viewsA: Update a CSV line without having to go through it all c#
Code Using to Pass CSV Content to a String List: public List<string> PlanilhaCSV(string caminho) { DataTable dt = new DataTable(); List<string> lista = new List<string>(); try {…
-
0
votes1
answer259
viewsQ: Update a CSV line without having to go through it all c#
Could I update a specific line of the CSV file? i have the information of which line I want to add information, currently I have the code that goes through the file and when it arrives in the line I…
-
0
votes1
answer1057
viewsQ: Write CSV file in a certain line passed by parameter c#
How to write in a CSV file, in a certain line I will receive by parameter, example of the beginning of the code: public void EscreverCSV(string caminho, int linha, string mensagemErro) { using…
-
1
votes1
answer1130
viewsQ: Change Label in view in Asp.Net MVC Project
I created a class in the Model called Payment.Cs, where it has the attributes exactly written as the name of the fields in my payment table in the BD. I created a view to register the payment…