Questions tagged as 'asp.net-mvc-5'

1
answer

Automated Deploy - Version Maintenance for Multiple Clients

What is the best way to automate deploy? Having 1 deploy for each client, what is the easiest way to keep all of these deploys? database migrations and all version handling? In an example we have 100 clients     
asked by 09.09.2015 / 02:40
1
answer

C # decimal field in Form

Simple question: I have a Decimal field of type Currency in my model. It happens that when I enter a decimal value in the form field, it arrives as integer in the Controller: Example: KM Value Rounded: 0.41 Arrives on Controller: 41...
asked by 18.06.2015 / 03:34
1
answer

TempData works on Localhost but does not work when published

Thank you for your attention! I'm developing in ASP.NET MVC5 What happens is this: When you run tests on localhost , this code works perfectly. I can retrieve the tempdata containing the object to send it to the View that generat...
asked by 12.08.2015 / 15:09
1
answer

View does not render in ASP.NET MVC

Well, I'm new to asp.net MVC and I'm picking up some time already for a blessed View . According to the help I had in this post # Following the example I made my adaptations but now my View is not rendering. Can som...
asked by 05.06.2015 / 20:54
1
answer

How do I call the same ActionResult more than 1 time to refresh the page?

I need to call ActionResult each time I select a new record in the DropDownList by calling only once when the page loads. No Controller private string PegarCaminhoImagem(Int16 controle) { sistema_mobileEntities dao = new...
asked by 18.04.2015 / 01:01
1
answer

Filter with external form with jquery datatables

I'm trying to make an external filter from an external form Until then, for a simple generic search, jquery datatables uses the parameter 'sSearch' For this, I just do var grid = new $.fn.dataTable.Api('.e-grid'); grid....
asked by 14.04.2015 / 13:57
1
answer

How to populate a code column for query with repeated values

I have a query where I have multiple data return from each user. But when I perform a search, I have the returned data as a return. I know that this repetition of the data occurs because I do not contain a single data (not repeated) in this q...
asked by 13.03.2015 / 12:45
1
answer

Error using iFrame

I have an application developed in Asp.NET MVC-5 and published in IIS normally. When accessing the application by the same link works correctly, all links. However, I need to put this page inside iframe on the official websit...
asked by 27.03.2015 / 12:41
1
answer

Use Jquery Autocomplete in Id properties

I have my Model as follows public class Album { public int Id {get;set;} public int ArtistaId {get;set;} } public class Artista { public int Id {get;set;} } And in my View, I use: @Html.TextBoxFor(model => model.ArtistaId, n...
asked by 31.12.2014 / 02:48
1
answer

Restart count when changing year

I have a view that returns me data that the taxpayer paid the pension in the current year, where I return the monthly payment of the same. I need to complete the sum of the months, creating a monthly subTotal. With help I managed to work, leavin...
asked by 05.03.2015 / 22:05