Posts by Antônio Filho • 343 points
11 posts
-
5
votes2
answers6054
viewsQ: Windows CMD - Setar String with Accentuation
I am trying to create a Batch (CMD) in Windows that "sweeps" folders in a particular directory and then renames the sub-folders according to a criterion I set. I am using the code below to carry out…
-
1
votes3
answers2378
viewsA: Send a List<T> with multiple items to the controller
I solved this problem using jQuery-Ajax: $('input[type="button"][data-submit]').click(function () { if (confirm('Você confirma?')) { var array = []; $('#table > tbody > tr').each(function () {…
-
1
votes3
answers2378
viewsQ: Send a List<T> with multiple items to the controller
Well, I’m facing the following problem in a project I’m working on: how to pass a list (List) with approx. 500~1000 View lines for the Controller? Actually, this list of mine has a field called…
-
3
votes1
answer158
viewsQ: Store List<Menu> In Memory or Cookie
good afternoon. I have an application that has a whole level of permissions management of access to pages and a number of other settings. Whenever a user authenticates, I assemble a list of all the…
-
0
votes1
answer52
viewsA: Perform 'Check' of a Datatable (Ids) in batch in the database
The solution found was to create a TYPE with a TABLE structure and, later, a STORED PROCEDURE that checks in the IN if the data sent by . NET exist in the database. The return was sensational. I…
-
0
votes1
answer52
viewsQ: Perform 'Check' of a Datatable (Ids) in batch in the database
I have a small desktop application (Windows Forms - .NET 2.0 - C#) in which I just use it to perform a check on a given time-to-time path and in case this check finds a file. txt in this path, an…
-
1
votes1
answer693
viewsQ: Understanding the DDD Concept
Good, I’m starting a new application, relatively simple, and I want to structure it into the DDD concept. I have read a lot on the Internet, I have seen many examples and meanings, but I would like…
-
5
votes3
answers1861
viewsQ: C# MVC Run Function (Logout) When Closing Browser
I am in a service system and need a help to understand how I can call some event (Javascript / jQuery / Or not) at the time a user closes the browser without logging "correct" by the system... Att.…
-
3
votes1
answer844
viewsQ: C# MVC5 - Table with Checkbox and Different Actions
I am working on a project of which I own a page that lists some records, of which I will 'flirt' some to perform batch actions such as deletion, status change, among others. How do I send this list…
-
3
votes2
answers400
viewsQ: C# MVC5 - Insert Fields with 4 Decimal Digits
I am making an entry in the database (SQL Server 2008) of a field configured to 'decimal(10,4)', from which I try to insert/edit, by my application C# MVC5, a field of my model of type 'decimal''.…
-
1
votes1
answer914
viewsQ: C# MVC5 - Using Outputcache
I recently started studying the OutputCache and its uses due to a use in a corporate system. I’m using the OutputCache to load all menus that a user (logged in) will have access to. However, I want…