Posts by eduardo mendonça • 155 points
13 posts
-
0
votes1
answer493
viewsQ: What is the best way to generate pdf files via webservice?
I have a Soap webservice and came across the need to generate pdf documents. Has anyone ever worked with generation of many documents via webservice and what technologies have they used? Which…
-
0
votes1
answer1368
viewsA: Use of search/search filters with Entity framework
The use of Any on Where apparently solved the problem. follows excerpt from the code: if (!String.IsNullOrEmpty(emailAuto)){ query = query.Where(a =>…
-
2
votes1
answer1368
viewsQ: Use of search/search filters with Entity framework
I am creating a grid with book data and I am adding some filters, the problem is time to create the filters of a table that has a link with books, I can’t navigate(Obs.:in the view I can navigate in…
-
0
votes1
answer35
viewsA: Codemirror does not display first in a modal
Follows code below: //exibe modal de xml padrao $(".btnPadraoXml").on("click", function () { $("#myModalVisualizaModeloXMl").modal(); //resolvido setTimeout(function() { editor_two.refresh() },…
-
1
votes1
answer35
viewsQ: Codemirror does not display first in a modal
Guys I am creating a standard model for reading XML and to facilitate the life of the system users, I am displaying a default model example in a modal with codemirror, however, it does not display…
-
1
votes0
answers120
viewsQ: What is the best way to replace a specific Web Api method for MVC architecture?
How best to replace the following method Sys.WebForms.PageRequestManager.getInstance().add_endRequest() Webform for MVC Structure?…
-
2
votes1
answer61
viewsQ: What is the correct way to legitimize a particular user through Identity with Soap web service?
Initially I tried to add snippets that are related to Identity and I used the Find method with password and login, but I was not successful. using System; using System.Collections.Generic; using…
-
0
votes1
answer397
viewsA: How to add 2 Dropzone in the same view
To create two Dropzone in the same view I had to use the following code: $(document).ready(function () { Dropzone.autoDiscover = false; $(".dropzone").each(function () { new Dropzone($(this).get(0),…
-
4
votes0
answers187
viewsQ: How to implement certificate chains? What is the importance/operation?
I created a local application in VS and when climbing the server the application was not with all the resources of the local application, in the application I am using X.509 and found a difference…
-
2
votes1
answer1007
viewsQ: How to implement PKCS#7 (components->class, library, dll, plugins and others) in a MVC5 web application
I’m trying to implement PKCS#7 in an application web mvc5 found some solutions for application desktop, never added desktop(class,dll,Ference etc) solutions to a web application, maybe it’s the…
-
0
votes2
answers971
viewsA: Form single field validation in Asp.Net MVC
Use in the Controller a method that searches for Cpf and also a method that checks if the CPF is valid in the same method private void ValidaCpf(Aluno aluno) { if (aluno.cpf != null) { Aluno…
-
0
votes1
answer397
viewsQ: How to add 2 Dropzone in the same view
Well I’m trying to add two Dropzone on a screen, one is specific to a file(pdf,doc) and the other is for attachment(doc,pdf,image etc). Below is an example of using Dropzone: @{ Layout = null; }…
-
2
votes2
answers313
viewsQ: How to create an input grid in Asp.net C# - MVC5
Basically I have a form and I am opening a window (modal) with a list of employees and by javascript I can add the email of the same in the form that will be saved, in another language in this case…