Tagged Questions
0
votes
1answer
11 views
Posting Textarea to Controller (currently null is being passed) - MVC
I'm creating a website where the user will fill in a textarea (in response to a question) and then press next. When they press next, the textarea will be submitted to the controller and the next ...
0
votes
1answer
14 views
Accessing drop down list value from controller
I added a drop down list to my view as shown below.
<select id="colorStyle" name="Colours"><option value="0">Red</option><option value="1">Yellow</option>
How can I ...
-1
votes
1answer
26 views
Public action method was not found on controller
I have the following controller method:
public ActionResult GetResults(string viewToReturn, int resultsPerPage,
string classification = null, string sessionId = null, int? lastId= null)
{
...
0
votes
1answer
16 views
Is it possible to save a variable in controller
I would like to save a variable in the controller to be able to use it for all methods so I declared 3 private strings
public class BankAccountController : Controller
{
private string dateF, ...
0
votes
3answers
99 views
knockout.js ajax results in ASP.Net MVC
I have the following controller:
public JsonResult EquipmentSelect(string term)
{
var equipmentSearchViewModel = new EquipmentSearchViewModel
{
EquipmentList = ...
0
votes
2answers
41 views
How can I have a routing like this controller/action/id/string in ASP.NET MVC
I have a actionresult that look this:
public ActionResult Comment(int id)
{
var news = re.GetNewsByID(id);
NewsViewModel model = new NewsViewModel();
model.Description = ...
1
vote
1answer
48 views
How to use ViewBag to pass list of data from View to controller
how can i sen a list of items from a view to a controller to save it. i believe that i can use Viewbag but i dont realy no how to use ite to pass data from view to controller.
this is what i have ...
0
votes
0answers
13 views
MVC Unity Patter - Resolve Conflict for Class File
Am using unity container to resolve dependencies across layers in MVC4(DI).
Microsoft.practises.unity
I have a Config file where i have type as interface and mapto business layer function.
and i ...
1
vote
1answer
47 views
Find null reference inside Asp Mvc Controller
I'm trying to correct a null reference exception in a Mvc Controller.
I can't debug in Visual Studio because there are query to a database reachable only on the server.
Now I have to read all the code ...
0
votes
1answer
22 views
passing model and parameter with RedirectToAction
i want to send a string and model (object) to another action
var hSM = new HotelSearchModel();
hSM.CityID = CityID;
hSM.StartAt = StartAt;
hSM.EndAt = EndAt;
...
0
votes
2answers
53 views
Default Authorization role at Controller level and override at method
I'm trying to set default access to the methods on my controller, so I've added the [Authorize] attribute on my ApiController.
For the most part, unless overridden with the [AllowAnonymous] attribute ...
0
votes
1answer
73 views
Skinny Controller For ASP.NET MVC File Upload
I am gradually converting a Classic ASP website to ASP.Net MVC. Within my Models folder I have further subdivided it into Business Objects (BO), Business Logic (BLL) and Data Access Layer (DAL) for ...
0
votes
0answers
65 views
Calling API Controller from another Controller with httpcontext in ASP.net MVC
I have a requirement in my ASP.net MVC 4 project to be able to call a web API controller from another controller or class elsewhere in the same project. The subroutine in the API controller has code ...
0
votes
1answer
63 views
.net MVC 4 RavenDB Unit Test Controller OnActionExecuting not firing
Using .Net MVC 4, RavenDB, MSTest.
I followed the RavenDB documentation to create an abstract controller class that creates the RavenSession in OnActionExecuting(), and saves the data in ...
1
vote
2answers
24 views
Why is controller thread is blocked if I use the session?
I have a pretty simple controller:
public class HomeController : Controller
{
public ActionResult Index()
{
Session["SomeData"] = "123";
return View();
...
0
votes
1answer
41 views
How to send data/ variable from View to Cotroller on a function MVC
im working on a MVC projekt.
how can i send the variable value from the view to the controller.
this is where i want to get the Id from; a GridviewROw
e.Row.Attributes.Add("onclick", ...
0
votes
0answers
86 views
Passing data from View to Controller in MVC4
Okay, so I've done this a million times before and I can't for the life of me figure out what's going wrong. So, I've got a Sql Server table called General_Info which when a user logs in will already ...
1
vote
1answer
69 views
Connot add controller in ASP.NET MVC project
I'm trying to add a controller in my ASP.NET MVC project.
I am using Entity Framework Code First (5.0), and when I right-click the Controllers folder in my project and selecting Add Controller:
...
0
votes
0answers
29 views
Request going directly to view instead of controller when they have the same name
I'm experiencing a weird behavoir when I try to make a view for an MaximumRequestLengthExceeded error page. It seems like when the Controller Action is named the same as the View the request goes ...
0
votes
0answers
96 views
ASP.NET HttpPost not passing Dictionary object into Action method
I am having trouble retrieving a Collection class in the HttPost method in my Controller code.
For some reason it is a able to retrieve an 'int', for example, but not a Dictionary.
I am using a ...
1
vote
1answer
63 views
In a post method, how to get compact parameters instead of all the object properties
Maybe the title is not so explicitly. Let me explain you my situation
I've got a get and post method in my controller. In the GET method, gets the entities from the database context
[HttpGet]
...
0
votes
2answers
66 views
Controller.View returns null
I'm unit testing someone else's ASP.Net MVC4 Controller action method. Its last line is:
return this.View("ConfirmAddress", addressModel);
This returns null in my unit test. The Controller.View ...
3
votes
1answer
67 views
ViewResult exists both in “System.Web.Mvc.dll” and “System.Web.Mvc.dll”
I am writing a unit test for a controller method in my MVC4 project.
And as a part of - Act - phase I am :-
var result = controller.SomeMethod(SomeViewModel) as ViewResult;
when I get the error - ...
0
votes
3answers
109 views
MVC Controller return Content instead of JSON
I've been working on a project were all of my requirements involved JSON. However now suddenly I have a need to return results from my model that can be used in an input elements value field. I can't ...
1
vote
1answer
64 views
Comprehensive Unit Testing for a method
I have a controller method - CurrentValues
[HttpGet]
public ActionResult CurrentValues(ValueRetrieverViewModel valueRetrieverModel)
{
int page = 0;
...
1
vote
1answer
77 views
Implicit connection of Action Methods with Views in ASP.NET MVC
I am currently working in a brownfield ASP.NET MVC 3 project in VS2010.
In this project, views and controllers are in separate projects. This is not something that I have seen before. In each action ...
1
vote
1answer
309 views
Values not being posted from Partial View MVC4
For some reason my partial view is always returning null values to the controller. I've tried implementing this in several different ways (including editor templates) but here's my latest.
Basically ...
1
vote
1answer
92 views
How to get current controller instance in another class?
In my project I manage exception in a class like this
public class PortalBusinessExceptionManager
:IBusinessExceptionManager
{
public void HandleBusinessException(BusinessExceptionDto ...
0
votes
1answer
42 views
MVC Controller Wizard not appearing when creating a new Controller in VS 2012
This is specific to one particular project. Probably missing some directives in Web.Config. Trying to figure out what those directives are. I could probably do some diff compare with a project ...
0
votes
2answers
119 views
Asynchronous MVC Controllers
I'm learning about the AsyncController in ASP.NET MVC and using it with the TPL, but I'm struggling to see its need, I can understand when you would want to run an Action asynchronously to do ...
1
vote
3answers
62 views
Is it possible to pass a delegate to a controller action?
I want to pass a custom filter to an action method in my controller.
I try to define it like that.
public ActionResult GetResult(Func<Fault,bool> filter)
{
List<Fault> faultList;
...
0
votes
2answers
34 views
What is the recommendation of the creators of the asp.net with mvc to put business logic in applications?
When I search the internet, I found that some people say that the logic should go in the ViewModel and some people say it should be go in Controller in asp.net with mvc applications.
So I cannot come ...
0
votes
2answers
175 views
Best practices in MVC using Controllers with Objects and ViewModels
When using a Controller, is it advisable to expose your domain entity or is it better to create a model. I have this as an example:
[HttpPost]
public ActionResult Create(Order order)
{
if ...
1
vote
1answer
67 views
how to display values from database into the layout page in mvc
Here i am trying to make a dynamic and editable layout page in mvc.In my layout page i have a logo( which is presently hard coded). I am implementing a function so that any user can change that logo ...
0
votes
3answers
266 views
ASP.net MVC pass some data from view to controler
In view I have ListBox so user can select some data. I also have MultiSelectList for same reason.
User can choose some date from MultiSelectList or he doesn't have to (he can leave that field ...
1
vote
2answers
321 views
MVC 4 - Should I use a partial view in a home controller?
I am in the process of learning MVC4, trying to understand best practices for controllers separation. By now, I've learned that it's good to have a controller for each logical unit of your site.
So ...
1
vote
1answer
61 views
Why does IoC has influence on Controller creation and how to fix that?
I have strange issue in my ASP .NET MVC application. I have some controller and some IHelper and it's implementation Helper for this controller. When I use this helper like below:
public ActionResult ...
-1
votes
1answer
46 views
Join different controllers from different projects
How can i use different controllers from different project in one application( on one localhost) ?
0
votes
0answers
75 views
How do I keep dialog open on validation error?
I have a dialog which contains a form provided by UC CreateUser.ascx . I am attempting to perform validation on the form provided by CreateUser.ascx. If there is a validation error I want to keep ...
0
votes
1answer
48 views
How to substitute default ASP.NET MVC controller to your own implementation
In my ASP.NET MVC applications, all controller I create via Visual Studio UI are inherited from Controller class. I use my own version of a base controller class that I need all my controller to ...
0
votes
1answer
43 views
How to protect a controller from accessing parent and root directories from user input
I have an ASP.Net MVC controller action that is designed to give access to specific files in select directories and sub-directories in my App_Data folder.
Will someone tell me how to lock this down ...
1
vote
4answers
171 views
Cannot inherit a Base Controller class which has no default constructor
I have a BaseController which inherited by another controllers,
BaseController:
public partial class BaseController : Controller
{
private readonly IUnitOfWork _uow;
private readonly ...
1
vote
1answer
153 views
SSL and ASP .NET MVC
I don't need to put the whole website under SSL(https://) but the Payment Controller only.
Is it okay to use [RequireHttps] for that controller only or should it be applied to each controller?
...
0
votes
1answer
80 views
Validation Filters for specific controllers
In a Web API or ASP.NET MVC application I can add a Global validation filter by doing -
GlobalConfiguration.Configuration.Filters.Add(new ModelValidationFilterAttribute());
and
public class ...
1
vote
2answers
202 views
Custom update method in MVC 4 with WCF
I am a newbie in MVC and currently using MVC 4 + EF Code First and WCF in my web project. Basically, in my project, WCF services will get the data from database for me, and it will take care of ...
0
votes
1answer
50 views
Unit Tests - method of user controller
I have a Controller named "UserController" with method named "Invite". My controller has the following override method:
DBRepository _repository;
protected override void ...
1
vote
2answers
458 views
Passing String Array parameter to the MVC Controller
I have the following controller to take four parameter and one to get an array of string.
public Response Get(string a, double b, double c, string[] d)
{
do something
}
As u see the fourth(d) ...
2
votes
1answer
100 views
Writing a unit test to verify all ASP.NET MVC controllers inherit a base controller
Thanks for answering in advance. I have just started delving in unit-testing asp.net mvc web applications.
I have few controllers, all of which inherit from a BaseController (This BaseController is ...
3
votes
1answer
51 views
Would there ever be a time when I should pass a ViewModel into one of my controller's Action Methods?
I have a page that contains a form (below):
@using (Html.BeginForm("GetResults", "Process"))
{
@Html.ValidationSummary(true)
{
<div data-role="fieldcontain">
<label for="name">API ...
0
votes
1answer
124 views
How can I get my controller by HttpContextBase?
I have base controller, assume that, it has a property named AnyProperty:
public class MyBaseController : Controller
{
public MyObject AnyProperty { get; set; }
public ...


