All Questions

1
answer

Which alternative to use instead of document.write

It is said that document.write is not a good practice, and also does not work after window.onload, which is the case I need. I have the following function that I need to change the document.write, the detail is that I need the content to be adde...
asked on 03.12.2015 / 15:14
1
answer

FreeASPUpload Classic ASP stopped working

In the company I'm working on all systems were built in Classic ASP, and we used FreeASPUpload to download files sent through form, but this morning this class stopped working out of nowhere. Has anyone gone through this? The code I use to ge...
asked on 14.12.2015 / 14:16
1
answer

Is it possible to do form authentication / validation with pure Node.js?

Today I was interested in Node.js because I could program javascript on the backend and front end. From what I understand - correct me if I'm wrong - Node is a platform that allows me to create server-side applications using JavaScript. Lo...
asked on 08.12.2015 / 02:05
2
answers

Create title attribute in td mounted by javascript

I have a table named gridContudo . In this table, there is this <td> : { width: 100, name: 'OBSERVACAO', index: 'OBSERVACAO', label: 'Observação'}] . What I need is to create a title attribute on this < td> ....
asked on 14.12.2015 / 12:10
1
answer

Why can I access normal functions before the declaration, but the anonymous functions do not? [duplicate]

In Javascript, you can use / use a function before your declaration. MyFunc(); function MyFunc() { return console.log('blah!'); } However, when it comes to anonymous functions and closures, it is not possible to do the above...
asked on 05.12.2016 / 16:47
1
answer

Doubt how to display binary tree by width?

Good to use this method of display needs a queue then all right, I tried this logic worked up to the third level of the tree . bool marcador = true; void buscaLargura(No *raiz) { if(raiz != NULL) { if (marcador == true)...
asked on 26.11.2015 / 16:31
1
answer

Google AdWords conversion tag

Creating a campaign on google adwords ** has the part that needs to validate clicks if they have been taken. In "Conversion Actions" tools you create that script, which says the following that should put in your page of success. Okay, cool...
asked on 21.11.2016 / 14:46
1
answer

Is there any way to assign values to a vector faster?

For example, I have the declaration of the following vector: float vet[3] = {1, 1, 1}; I would like to change all values of the same one at a time, without having to change one by one element or create a new vector and assign to it: vet[0...
asked on 10.11.2016 / 14:50
1
answer

ASP.NET MVC Scaffolding for any table

Does anyone know of a way I can automatically CRUD for my bank tables using MVC? I have 5 tables and would like to automatically generate SinglePage apps for them, without having to generate multiple views/controllers . Th...
asked on 19.12.2016 / 15:37
3
answers

How to compare all the elements of two vectors one by one?

Having two vectors of int of the same size, there is some native language function that compares the x position of the first vector with the x position of the second vector, doing so to all positions generating a general r...
asked on 13.11.2016 / 21:21