Posts by Abidias • 146 points
5 posts
-
4
votes2
answers318
viewsA: Problems to remove Parent() items with jquery
What I did was just change the code snippet where you run the remove(). I hope I’ve helped. $("#addParagrafo").click(function () { var conteudo = $('#adicionarConsideracoesGerais').val();…
-
1
votes1
answer320
viewsA: Create item in another project Visual studio 2013 Template
I don’t know if this is exactly what you need, but in the tutorial below the author shows how to create a template for multiple projects, so when you create the Solution using the template created…
-
1
votes2
answers1730
viewsA: Time-out expiring faster than expected - ASP.NET
Apparently your web.config is correct. It may be that what I say now is bullshit, but I’ve been through some situations where an application was in a virtual directory and the settings of the main…
-
1
votes1
answer238
viewsA: Data Source - Best way to organize methods/classes pertaining to the entire table?
In my opinion it does not make sense the "save" object itself in the database, regardless if you use pure ADO or some ORM, I believe that the Repository standard is more appropriate; but of course…
-
3
votes2
answers481
viewsA: What are the Types of Ioc?
There are four ways to implement Dependency Injection: Constructor: How we implement dependency injection in the definition of class constructors; Getter and Setter: How we implement dependency…