Questions tagged as 'asp.net-mvc'

1
answer

Form uploaded to image

How do I upload images in ASP.Net MVC? I have a registration form where the user has the option to send an image to use in their profile. An example would be helpful.     
asked by 12.09.2014 / 22:42
1
answer

Can Entity Framework not map a table in MVC?

I added a new table in Model.edmx, but was not created in Model.Context.cs or public DbSet<informacoes> informacoes { get; set; } is also not created in the Model.tt class of this table. how to solve this?     
asked by 08.04.2015 / 20:09
1
answer

Allow Multiple Providers with Authorize Attribute

I'm trying to implement Roles permissioning within my controller: [PerfilFiltro(Roles = "Administrador,Caixa")] public ActionResult Index() { return View(db.Adicional.ToList()); } public class PerfilFiltro : Author...
asked by 24.09.2014 / 02:33
1
answer

Date with bootstrap does not run on my project

I need to put a component to select dates in a filter in my project. As I use bootstrap, I need to put the dates with this component. It turns out that the examples I got on the internet, I could not make it work, one of them here Any help,...
asked by 03.10.2014 / 15:25
1
answer

IQueryable select data from multiple tables

I have a queryable linq to entities ) in the EntityFramework and I am not able to pull data from two or more tables. For example: var model = _service.List().Where(m => m.DS_GRUPO.Contains(searchString)).Select(m => new { m.PK_GRUPO,...
asked by 15.08.2014 / 21:49
1
answer

How to position text biased in ReportViewer?

Is there a way to tilt a word (textbox, or other possible way) in the ReportViewer so that it is 45 ° (degrees), for example?     
asked by 16.08.2014 / 20:07
1
answer

When and how to use asp.net web api

I've been studying Asp.net MVC for some time, I've read about WebApi but I still can not figure out when and how I can use it. Ex: I have a small news system, where I have a area where the administrative part and the root projec...
asked by 04.07.2014 / 05:45
1
answer

Database inheritance

I'm developing an application, where I have 3 tables that have the same attributes, but since they had attributes in those tables that were mandatory for some, not for others, I decided to separate them into 3 different tables. However, I'm havi...
asked by 10.11.2014 / 23:51
1
answer

Search with Checkbox

I'm trying to create a search system in my application where the user can search the site's publications according to the genre. I can list the registered genres with checkbox, but I'm lost to do the search query from there. I have the follow...
asked by 15.11.2014 / 21:22
1
answer

Ajax request in C # update authentication

As I do for every Ajax request, give update to forms authentication cookie. I want to update no forms authentication in my controller, because it is a calendar screen that uses FullCalendar. I'm trying to troubleshoot a page, which only do...
asked by 09.05.2014 / 14:24