0
votes
1answer
75 views

ASP.NET MVC 4 get value from different controller

I have a class "Student" and other class "scoresheet". Each Professor should be able to fill up a scoresheet for each student. I have been able to create, list, edit the scoresheet with using the ...
2
votes
1answer
258 views

Change URL from controller?

Is there a way to change the current url params from the controller so when the page is loaded, additional/different parameters are displayed in the address bar? Here's what I mean, say I have an ...
0
votes
3answers
381 views

[Resolved]ASP.NET & MVC3 DropDownList and Url Parameters

For my job, i need to develop an web application in order to display a list of the jobs of some bank applications. Actually, the biggest part of this application have been done but I have to include a ...
2
votes
1answer
925 views

Best way to add parameter to the current URL in ASP.NET MVC3

I ask a similar question here, I need to keep current URL and add new parameter to it, the only answer (yet) is : RouteValueDictionary rt = new RouteValueDictionary(); foreach(string item in ...
0
votes
1answer
518 views

Asp.net MVC3 passing model within model in an action link

I'm having problem passing my model via an object link Here is my model public class ItemImage { [Required,Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; ...
11
votes
3answers
11k views

Send list/array as parameter with jQuery getJson

I have the following where I'm trying to send list/array to MVC controller method: var id = []; var inStock = []; $table.find('tbody>tr').each(function() { ...