Posts by Alan R. Soares • 313 points
9 posts
-
4
votes1
answer112
viewsQ: Error while trying to observe the contents of a variable or property of an object in the 2013 VS Bugger
Practically every time I try observe the contents of a variable or property of an object, I get the error below: Function Evaluation disabled because a Previous Function Evaluation timed out. You…
-
3
votes2
answers33949
viewsA: How to catch the current year on ORACLE?
Using to_char: select to_char(sysdate, 'YYYY') from dual;
-
2
votes3
answers4213
viewsA: Bootstrap dropdown menu does not work on Asp.net website
Talk, man. Make sure that the jQuery is being loaded; Make sure that the bootstrap.js is being loaded; Make sure that no javascript error occurs that prevents the dropdown from being enabled;…
-
2
votes3
answers2713
viewsA: ASP.NET MVC5 - Asynchronous Methods in Controller
If your method doesn’t actually do any asynchronous operation, it makes no sense to have Keyword async. And asynchronous methods should be preceded by the keyword await for them to be executed and…
-
1
votes2
answers476
viewsA: Versioning scheme
According to the SEMVER: (in free translation) Given a MAJOR.MINOR.PATCH version number, increment: MAJOR (Main version), when you make changes to the API that break backward compatibility, MINOR…
-
2
votes2
answers9692
viewsA: How to emulate an iOS app on Windows with Phonegap?
Unfortunately it is not possible to run iOS application in windows with Cordova. However, there is an interesting alternative, which is also Cordova-Based, which is the Steroids, of Appgyver. That…
-
1
votes2
answers1847
viewsQ: Change layout of a radioButtonList / checkBoxList Webforms to make it compatible with Bootstrap
As is known, the default layout format of a radiobutton or checkbox in list controls in Asp.Net Webforms is always something like <label></label><input> I wonder if there is any…
-
2
votes5
answers1056
viewsA: How do I connect Windows Phone to an SQL Server?
Mobile applications cannot communicate directly with relational databases. For any data/persistence integration into an external source. A web backend is required that allows interaction via API.…
-
1
votes3
answers1139
viewsA: Route to static pages in MVC
According to the structure you sent, you will need to do a subrouting in a controller "Pages". The "id" parameter is required if you do not want to change the default route:…