All Questions

1
answer

Route configuration in NodeJS using Express 4.8

I am using v0.10.37 version of Node and 4.8 of Express. I'm trying to setup the route for the index. And the following errors appear    Error: Route.get () requires callback functions but got a [object Undefined] Or:    Error: Can not...
asked on 11.10.2015 / 06:07
1
answer

How to write the percentage symbol in a string in Java?

How to make the string accept the percent symbol ' % '?     
asked on 23.05.2015 / 17:35
1
answer

Ajax POST with jQuery and Node.js Express always returning 404: Not Found

I created the route below to accept POST requests, but calls via AJAX for this route are always returning error 404: Not Found. /* Arquivo: integracoes.js */ var express = require('express'); var router = express.Router(); // Esta rota funcio...
asked on 08.10.2015 / 02:16
1
answer

Proxy project pattern, why use?

This example proxy pattern can be found on Wikipedia. reference: link What I want to know is this: Why should I use this pattern? When should I use it? Why is it good? What would be a wrong way to do this pattern? Are there any f...
asked on 08.06.2015 / 16:26
1
answer

C # converter for JavaScript: ((object) sender). attribute

I'm developing a C # to JavaScript converter and I'm in a bind when the code has a line of code like this: ((CONTROLE)sender).Atributo Exemplo:((ImageButton)sender).ImageUrl What is the corresponding JavaScript code?     
asked on 25.05.2015 / 14:41
2
answers

Enable / Disable button according to field validation

I'm performing date validation for two <input type="text"> fields with jQueryFormValidator : $.validate({ modules : 'date' }); <script src="https://ajax.googleapis.com/ajax/libs/jque...
asked on 29.05.2015 / 01:16
1
answer

Help with PHP Replication Structure - PARSER - simple_html_dom.php

I am making a parser with simple_html_dom.php where I pull all the links of a certain page. I can pull the links and assign to an array, then the problem comes up: This page has a maximum display limit of 36 items per page. items i...
asked on 19.05.2015 / 15:39
1
answer

Problem with Decimal (4,2)

I have an MVC project, I am using Entity Framkework and in my database there is a table with a column of type decimal (4,2) . The problem is: I try to insert any value, for example: 5.00 // 5,00 // 14.21 // 14,21 and it always re...
asked on 19.05.2015 / 15:29
2
answers

How do I submit a form inside an iframe if the page that has the iframe is redirected?

   I'm creating a page that works like this:       The person accesses a registration page, and within this page there is a iframe with the registration form. When a person clicks on iframe on sign up he redirects to another pag...
asked on 27.05.2015 / 10:59
2
answers

Should I use rebase?

I'm working on a redesign of our web application, in a separate branch, say new_interface . Meanwhile, other developers are still in the master branch, mostly resolving bugs. While some files may differ considerably, I need to recov...
asked on 25.05.2015 / 17:14