Posts by Ana Carolina Manzan • 401 points
9 posts
-
2
votes1
answer87
viewsA: Single entry on Asp.net form
I think that in this case the most interesting thing is that you do this validation of the existence of an equipment already registered for a certain port on the server side, since apparently this…
-
3
votes1
answer112
viewsA: Retrieve data from a created column
One way to solve the problem would be to take this query of yours and play inside a subquery, and then select these fields that you want "on the outside". Would look like this: declare @mesAtual as…
-
1
votes1
answer55
viewsA: C# - Use form data in IF
Exchange your if for the following: if (ddlTipoEqp.SelectedValue == 1) { cmd.CommandText = "INSERT INTO EntradaEstado (IDEquipamento,IDEntradaTipo,IDEntrada, Valor, DataHoraAtualizacao) VALUES (" +…
-
7
votes3
answers6518
viewsA: How to access the code behind a Stored Procedure?
In SQL Server Management Studio, expand the database where Procedure was created. Click on Programmability, then click on Stored Procedures. Within this directory of Stored Procedures you will see…
-
2
votes1
answer598
viewsA: Path to the Webapi URL
You need to make the following changes: -> Change the method parameter type to string -> Add Annotation ActionName to your Action, so you can make the call of the method through…
-
2
votes1
answer221
viewsA: Consult by Date
If a hora não faz parte da pesquisa, I believe you can only take the date portion by adding the .Date on the date of the objects when creating Specification: specification =…
-
0
votes2
answers2017
viewsA: How do I turn on onclick in my javascript?
First of all Devo colocar o mesmo id ?: nay. The id is used to identify its html elements on the page when it is necessary to manipulate them through javascript for example, and therefore should be…
-
1
votes3
answers126
viewsA: Doubt in CRUD, I’m having trouble reading the keyboard data
At the beginning of class Principal you include Scanner import import java.util.Scanner; After that, you need to create a scanner object, which will read the keyboard data to its author object. Your…
javaanswered Ana Carolina Manzan 401 -
3
votes1
answer3360
viewsA: Date format in Asp.net mvc
I had the same problem and what helped me to solve was this blog post here: MVC 3: Validation for crops such as en In my project I am using a newer version of ASP.NET MVC, but still the problem was…