Posts by Danimar Ribeiro • 64 points
7 posts
-
0
votes3
answers212
viewsA: Problem with the Bundle
To use the styles have a hint that you should follow: Place your font folder along with your css files, just like the images folder is in the figure below. When registering your css, put the path in…
-
0
votes2
answers355
viewsA: Maximize Solution: Sublist Construction Meeting Limit
I think what you’re looking for is this: http://marathoncode.blogspot.com.br/2012/09/algoritmo-de-kadane.html If you want an exact 20D value set, you should search for Subset Sum.…
-
2
votes4
answers9080
viewsA: Select2 with AJAX
Use the type dataType: 'json' as Anderson posted. If you use jsonp, it means that you are trying to execute a cross-Domain request, and in case you need to add in your url: ?callback=?…
-
0
votes3
answers166
viewsA: Form waiting for a request
Basically you should use threads, or use asynchronous methods in . net 4.5. Gives a better handle on threads, and async. http://www.buildando.com.br/2013/12/programacao-assincrona-com-async-e.html…
-
0
votes4
answers3223
viewsA: Generate xml through a class, even without value in the property
You can create a class that inherits from Xml.Xmltextwriter and overwrite the Writeendelement method, I did this in an NF-e component, where the whole element needs to be created. Imports System.IO…
-
1
votes3
answers629
viewsA: Log into page using the bank ID in ASP.NET
.Net 4.0 onwards is already possible to use the MVC routes in project webforms, I myself use. In Global.asax you must register the routes. routes.MapPageRoute("SalesRoute",…
-
1
votes2
answers521
viewsA: Can I use any programming language in Windows Azure? How?
Node.js and Python can be added to the language list. The visual studio even has SDK to publish python, php, etc applications. http://www.windowsazure.com/pt-br/services/web-sites/ Developers can…
windows-azureanswered Danimar Ribeiro 64