Questions tagged [asp.net-mvc5]
The asp.net-mvc5 tag has no summary.
19 questions
2
votes
4
answers
1k
views
How to automate certains tasks in a web application?
I'm working on my final project for a course named Web Applications in ASP.NET.
Basically, it's a web application for shopkeepers to manage their clients' money accounts in their stores.
In order to ...
0
votes
2
answers
1k
views
Asp.Net Mvc 5 / Web Api 2 unit testing data access layer
Let's say I have IRepository interface implemented by Repository class(uses database context to implement IRepository methods). And IUnitOfWork interface implemented by UnitOfWork class using ...
0
votes
2
answers
529
views
Should I use role-based authentication?
I have 3 types of users who might login to my website: Admin, Instructor, Student.
I already have tables for Students and Instructors , and each one has its unique properties .
Now I want to ...
1
vote
2
answers
1k
views
Where to store translations for values to their corresponding display texts?
This is probably a naive question but I'm trying to figure out the industry best practice for working with magic numbers and their corresponding display texts. For example, whether a transaction is ...
0
votes
2
answers
619
views
Handling User Specific Information in a Web Application
I have some information about a user I need to store and access in an ASP.NET MVC 5 application. Here are some of the things that I will need to store/access:
Theme choice
If they want to show panel ...
1
vote
1
answer
54
views
Should I create a new Model for a filtered view of Existing model?
I am new to MVC, and just inherited a project that is still in it's early stages.
The scope is a user interface to manage a single SQL table. There is a model that represents the entire table (select ...
0
votes
1
answer
146
views
Questions regarding my MVC application
I'm learning .net MVC while developing a simple word list - Eg. When you learn a new language and create a list of words related to a certain topic.
I don't think I'm following the rules or good ...
59
votes
4
answers
74k
views
Should I be using both AngularJS and ASP.NET MVC?
I started learning AngularJS and ASP.NET MVC, but am not sure why to use them both together in the same project?
Aren't they both MVC frameworks? Should I be using them both in the same application? ...
2
votes
2
answers
2k
views
ModelState Validation vs JQuery vs Remote
I was stuck with some validations for quite a while. I have been thoroughly searching the internet to find ways to apply the validations I require. I came across many methods for validations even ...
2
votes
1
answer
3k
views
How do you handle saving blog tags in MVC?
I'm writing my own blog engine as a learning exercise. The blog is fairly functional right now but I'm trying to add a 'tag' feature to it and I'm confused as to what the best way to handle saving a ...