Posts by mmooser • 117 points
14 posts
-
0
votes1
answer70
viewsQ: Receive parameter and depending on the value run a specific process
I have a system in Classic Asp, and I need to run a specific SQL Server process, according to a parameter that the system receives from a form. I tried to do so: if tipoagenda = 1 then ssql1 = "exec…
-
0
votes1
answer522
viewsQ: Disable Submit button after validating empty field using jquery
I want to disable the Submit button to validate some fields preventing them from being empty. But there is a catch, because these fields are only displayed according to the selection of a combo. Ex.…
-
0
votes1
answer115
viewsQ: Problem with Javascript validation
I would like a help to know what’s wrong with this validation: if(qtdemp=5 && func1.value.length == 0 || cpf1.value.length == 0 || func2.value.length == 0 || cpf2.value.length == 0 ||…
-
0
votes1
answer118
viewsQ: Open div according to combo selection
Need to include lines in a table with textbox fields according to combo selection. x is that if the user selects in the Employees = 2 combo, it must display the textbox Name 1 and Name 2, if you…
-
0
votes1
answer53
viewsA: Run SQL precedent that disables dates in Datepicker
I made a call to Procedure before the call to the function to disable dates, and I passed the result by variable, with the dates concatenated and formatted as it enters datepicker: var disableddates…
-
0
votes1
answer53
viewsQ: Run SQL precedent that disables dates in Datepicker
I have a system with a datepicker, and I want some dates to be automatically disabled. These dates should automatically populate the array that disables the dates. (Today it is manual as shows the…
-
0
votes1
answer154
viewsA: .Parameters.Append . Createparameter is not passing the second parameter
Includes the Homolog field as value at the end of the line, along with the size .Parameters.Append .CreateParameter("@homolog", adInteger, adParamInput, 1 homolog)
-
0
votes1
answer154
viewsQ: .Parameters.Append . Createparameter is not passing the second parameter
I have a system in ASP Classico, and I’m trying to run a SQL Server process passing two parameters. Originally I was only passing a date selected on a datepicker and it worked, now I want to pass an…
-
2
votes1
answer1185
viewsQ: Disable date in Datepicker from SQL Server table
I have a system in Classic ASP, in which I have a scheduling calendar. I need to disable the dates that are in the table of holidays and compensations (id_holiday and date). I don’t know how to…
-
2
votes1
answer204
viewsQ: Make a SQL Server process by receiving a special character string and getting only the numbers
Hello, I have a system developed in ASP Classic, in which I select up to 5 times on a screen. These times are sent to the other page via querystring, but the format that comes is followed by an…
-
1
votes1
answer376
viewsQ: Procedure If exists update Else Insert in table with composite SQL Server key
Hello. I want to synchronize a table with Linked Server, but the problem is that the table has a composite primary key, and I don’t know how to check to find the record. Can someone please help me?!…
sql-serverasked mmooser 117 -
3
votes1
answer414
viewsQ: Microsoft SQL Server Error 10060
I recently formatted my computer and reinstalled the applications. Among them SQL Server 2014. The problem is that I can’t connect to the provider’s server! I uninstalled the 2014 version and…
-
0
votes1
answer207
viewsA: Form validation Javascript works on IE but not on Firefox
I can’t believe I didn’t see the extra quotes!!!! It was all because of this here: <input type="submit" name="Submit" value="Listar Vencimentos"" onclick="return valida()"> Aspa sobrando! ^…
-
2
votes1
answer207
viewsQ: Form validation Javascript works on IE but not on Firefox
Good afternoon to you all. I am trying to validate a form by checking if the value field is filled and is greater than 0. It worked perfectly in IE, but in Firefox it works for nothing in the world!…