Posts by rtbortolin • 61 points
5 posts
-
2
votes3
answers2414
viewsA: How to byte[] a uploaded file into a C#Uploadfile
The way you were doing, taking the path of the file and then opening a stream of this path would give problem when publishing the application on a server, on your local machine would work since the…
-
1
votes1
answer562
viewsA: C# Mysql transaction in distinct classes and methods
Ideally you would have a distinct class that would be responsible for controlling the transaction: public class FuncionarioAplicacao { public string InserirFuncionario(FuncionariosDTO funcionario) {…
-
0
votes2
answers294
viewsA: I Can’t Make Reports
Tries to create a Class Library project and create a . rdlc in it and open it. For some reason, MVC projects do not recognize the visual file editor . rdlc.
c#answered rtbortolin 61 -
1
votes2
answers608
viewsA: Value when null does not show the value in xml
I had this same problem, the client that consumed WS treated xml as string in hand, they got lost when they didn’t have the full xml tag. The solution was to throw a blank space when it was null.…
-
2
votes1
answer938
viewsA: RDL Report of Report Builder 3.0 with MVC 4
I believe you should do the GET through the link: Page/Listdescription? Iddescricao=1&Data=01/01/2014&Data2=02/01/2014 And in your generate report action you put the other parameters too:…