Posts by Carlos Alves • 26 points
3 posts
-
1
votes2
answers97
viewsA: What are the consequences of not working on data typing?
Your biggest problem will be how to work the data. Databases create resources for certain types of data as well as programming languages, and you’ll be throwing it all away by treating everything as…
-
0
votes1
answer449
viewsA: IIS Windows Server, Error running application (HTTP 403.14 - Forbidden)
The server is unable to interpret your application, make sure all files are published correctly, the default route is set and the Application Pool is set to 4.0.
-
0
votes1
answer405
viewsA: How to run and capture a command line output in C#
I’ve already done what you’re trying. Just run your console application through cmd via C#. In the example below in the correct answer, where "command" is replaced by path + executable for your…