Posts by Ademilton Marcelo Nunes • 253 points
7 posts
-
9
votes3
answers189
viewsQ: LEN function, know number of characters of a number
In the example below the result of the query instead of returning 7 is returned 5. DECLARE @valor money = 10.6879 SELECT LEN(@Valor) The impression I get is that when the number is the type money ,…
-
1
votes1
answer129
viewsQ: When is Trigger SQL server triggered After Insert?
When a Trigger is fired after an Insert and the Insert is within a transaction, Trigger is executed at the time of the Insert or at the end of the transaction?
-
8
votes4
answers6487
viewsQ: Maximum request size ASP.Net MVC
I am uploading Image using Jquery. I limited the image to 2mb, but sending a larger image of 2mb shows an exception saying Maximum request size exceeded. That’s what I did: function fileUpload() {…
-
0
votes1
answer318
viewsQ: Dropdown already selected
I dropdown with Angularjs in the following way <ui-select ng-model="SelectedItem.LegalEntity" theme="bootstrap" reset-search-input="false" style="width: 100%" id="legalEntityId"…
-
0
votes1
answer110
viewsA: Dropdown Asp.net MVC
Friends got popular the DropDownList via ajax as follows: Controller: public ActionResult GetAntera() { var List = db.Antera.ToList(); return this.Json(List, JsonRequestBehavior.AllowGet); } Script…
-
0
votes1
answer110
viewsQ: Dropdown Asp.net MVC
I would like to do two dropdown in a view, I don’t want to dropdown through the model in the view because each dropdown is a different class. I made the dropdowns with angular.js only that I failed…
-
5
votes2
answers2528
viewsQ: Search for tree depth
I’d like to develop an algorithm that searches for depth in a binary tree, but I’m not getting it. When we make the tree we assign to each node the cost (cost to transition from one node to the…