Posts by vinicius • 88 points
13 posts
-
0
votes2
answers461
views -
0
votes2
answers333
viewsA: Open page in modal form
Try putting a @Html.Partial("modal name") to load your html code on the index page. It would look something like this: Página Index: @{ ViewBag.Title = "Index"; } @Html.Partial("_Create") @*coloque…
-
3
votes2
answers97
viewsA: Software with local and remote BD recording
If you are developing only for Windows, you can use C# to build the Software, or java if you want to build a cross-platform application, there is also Python that is currently on the rise but I can…
-
1
votes2
answers32
viewsA: Timeout Connectiostring
This value is in seconds if your database is sql Sever, I believe it will change according to each database, since this connection string is sent to the DBMS (Data Base Management System), that is,…
-
-3
votes2
answers53
viewsA: Buttons don’t change color
This is because you have some class conflict in the same element, that is, some other class is applying the color to the background later, overwriting the blue color you want, as a quick solution,…
-
0
votes1
answer136
viewsA: Execute function when closing the window
I put some alerts in your code, see what displays in each case, basically you will debug the code. window.onbeforeunload = saida; function saida(){ alert ('ok1') var sair = confirm("Deseja salvar…
javascriptanswered vinicius 88 -
0
votes2
answers531
viewsA: How to name folders in PHP’s MVC structure
It does not have a defined rule, but the pattern used by most is: Models: where are the variables and methods of data manipulation, e.g., a client class that contains name, CPF... as attributes, and…
-
0
votes2
answers133
viewsA: Mysql - Sort a table and keep records together
Try to assemble an order by as follows: sua consulta... order by matricula, cpf;
-
0
votes5
answers2183
viewsA: Save items and recover values with Localstorage
You can create a different key for each item and store it separately, or you can save a cart JSON within localStorage and retrieve it later. Follow the JSON example: var carrinho = [ {item1},…
-
1
votes0
answers33
viewsQ: Communication socket in Windows service
Next, I have a problem with an application I am developing, I need to carry out a communication between a Windows service and a web application, the Windows service will stay in the local…
-
1
votes0
answers26
viewsQ: Control Dslr camera via web
People: I have a web application that I would like to be plugging in a dslr (professional camera) camera that would display the live image in a canvas in html or something, and that would literally…
-
0
votes0
answers558
viewsQ: Webcam Photo Taking using java script
Folks does anyone know how I do to capture photos from web cam by a web application through some java script plugin and pass it to the server via POST? A e de preferencia que a foto fique em um…
-
1
votes0
answers97
views