Posts by Edgar Araujo • 207 points
8 posts
-
1
votes1
answer132
viewsQ: Stored asynchronous Procedure
When trying to run Process asynchronously public async Task<ActionResult> Index() { Stopwatch watch = new Stopwatch(); watch.Start(); ContentManagement service = new ContentManagement(); var…
-
3
votes1
answer306
viewsQ: Receive post from one view to another view
I have two Views. Index Assincrona When access to index, he calls the View Assincrona and there’s a gif uploading to the whole page (Assincrona) be loaded and displayed in View. Controller Codes…
-
4
votes1
answer2526
viewsQ: Recover view value for controller
Goal: Retrieve view value for controller [Httppost] I created a Generic class with gets and sets public int ListarDadosCarteira_Resultado { get; set; } public string ListarDadosCarteira_Descricao {…
-
1
votes0
answers298
viewsQ: Enter in Textbox by calling button event
When I hit enter in a textbox, it is calling the "Filtrogridview" and then it calls the button event. <div class="TextRight"> <asp:TextBox ID="txtBuscaNome" runat="server"…
-
2
votes1
answer446
viewsQ: Separator of thousands
How could you put thousands apart into one textBoxFor()? Example: Value entered in View 1,321 ( The point is for visual ease only) controller would receive the 1321 value to insert into the base. My…
-
1
votes1
answer70
viewsQ: Value and ID at Dropdown Waterfall
Reference that can help you understand the code. Dropdown Cascata This part here I pass the values that will be added in the second Dropdown var classesList =…
-
3
votes1
answer409
viewsQ: Dropdown Cascata
My problem is passing values to controller when making an update. I can do the Cascading all right. Follow my code. First DropDown: @Html.DropDownList( "idCanalIndicadoresMassivo",…
-
3
votes2
answers721
viewsQ: Html.Editorfor value Default
How could you put Default value on a Html.EditorFor ? Understanding my code, I have a field that’s a filter when I click on EditorFor open the calendar, I’d like the datetime.now but only visual…