Posts by Kaique Mota • 496 points
20 posts
-
1
votes1
answer3973
viewsA: IIS 7 - Error 403 Prohibited: access denied
I found the error was in windows 8 configuration. The server did not interpret the project because the Asp.net module of IIS was not enabled, according to the microsoft documentation itself in…
-
2
votes1
answer3973
viewsQ: IIS 7 - Error 403 Prohibited: access denied
I have a webservice restfull and when Pure on my machine with my Visual Studio it works normally, but when I publish on my production server with IIS 7 it gives a denied access error. My project is…
-
1
votes1
answer516
viewsA: Taking table elements with htmlagilitypack
You can use a tool to help Htmlagility that would be the Fizzler!! it has the same purpose as the Htmlagility however in it you can do "query’s" in your object to catch the desired element, you can…
-
5
votes4
answers5376
viewsA: SELECT within the UPDATE
As an explanation of the comment in my reply above: the select you are using is : UPDATE tb_telefones SET nr_ddd='" + dddNovo + "', nr_telefone='" + telNovo+ "' WHERE cd_telefone = (SELECT…
-
4
votes4
answers5376
viewsA: SELECT within the UPDATE
For it to work you would have to make sure that the result of your select is only of a value, you can do this by ultilizing for example : SELECT top1 cd_telefone FROM tb_telefones WHERE nr_ddd='" +…
-
0
votes1
answer159
viewsQ: String conversion problem in Timespan
In the system I’m developing a user sends me a TimeSpan via Post, but when I catch the String that should be the TimeSpan and apply a TimeSpan.Parse he gives the error: "Could not parse Timespan…
-
3
votes1
answer40
viewsQ: Wrong webservice message integrating with Actionscript
I’m making an application restful in C#, where I will receive a request via post and return a JSON or a string to the applicant. [HttpPost] public string confirmahora() { String OUTPUT = "mensagem";…
-
0
votes2
answers835
viewsA: Select only columns with values
I don’t know any way to make a select that returns only the columns that are not null, however if you are using some programming language to be doing the application, you can create an object class…
sqlanswered Kaique Mota 496 -
5
votes2
answers6760
viewsA: Error " An error occurred while Processing your request. "
I deactivated the customError and the real error appeared, it happened that for an oversight of mine I did not close a connection, when I ran host site it worked, more because on the host site…
-
4
votes2
answers6760
viewsQ: Error " An error occurred while Processing your request. "
I developed a MVC C# application for JSON reporting in my localhost it works normally, to query because it takes 2 to 3 databases depending on the report, but when I host the application in Azure,…
-
0
votes1
answer141
viewsA: Split slides into Diferrent ppts
that was the solution I was able to research! string fileName = @"C:\wiplay\pp\testewiplay.pptx"; string exportName = "video_of_presentation"; string exportPath = @"C:\wiplay\pp\{0}.mp4";…
-
0
votes1
answer141
viewsQ: Split slides into Diferrent ppts
I am using the project "Powerpoint Add in 1" in Visual Studio 2013, and I have the following problem, I have a . ppt with 2 slides, I need to separate these 2 slides into different presentations so…
-
0
votes3
answers1755
viewsA: How does the Flux architecture work?
According to post on React blog: Flux is the architecture of the Facebook application uses to build Javascript applications. It is based on a unidirectional data stream. We have built everything…
-
0
votes1
answer369
viewsQ: Find HTML inside an iframe
I’m having trouble getting the data from a table on the Bovespa website, because they are inside a iframe and I’m not getting it from Webbrowser, I am using windowsForm.…
-
0
votes3
answers2246
viewsQ: What is the percentage difference between the number of possible addresses with Ipv4 and Ipv6?
What is the difference in percentage numbers of the ip possibilities of the IPv4 and of IPv6?
-
1
votes2
answers3428
viewsQ: Take the value of an input type=text and play in a variable
I am using ASP.Net-mvc4] in my C# project in Visual Studio and I need to get the value of input type=text that’s in my view, and play in a variable on my controller, but I couldn’t find a way to do…
-
0
votes2
answers4221
viewsA: How to use HTML Agility pack?
Good I managed to get the values on the table this way private void timer_loteca_Tick(object sender, EventArgs e) { //loteca WebBrowser clienteloteca = new WebBrowser(); if (timer_loteca.Enabled ==…
-
4
votes2
answers4221
viewsQ: How to use HTML Agility pack?
How to Use HTML Agility Pack my project in Visual Studio in C#, as I have a table extracted by an object webbrowsers, the more I go splits in it it stands like an array of almost 700 indexes, I…
-
0
votes3
answers250
viewsA: Ideal environment IT sector
Here in the company where I work they use a bench layout on each other, so the cooperation and integration between their programmers would be more agile
project-managementanswered Kaique Mota 496 -
1
votes1
answer413
viewsQ: How to install newtonsoft in visual studio without nuget
I would like to know how I do to install newtonsoft-json in Visual Studio without nuget, because I heard that I could install it without nuget.
visual-studioasked Kaique Mota 496