How To Send Id From View To Controller

Mar 27, 2011

I have a view that receives a Model and displays info of that model.

I have a submit button and when it is clicked i want it to send the id to the method to process it and delete a row that has such id.

How can I do this? I want to use a button not an html link like

@Html.ActionLink("Delete", "Delete", new { id = Model.Id }) |

View 1 Replies


Similar Messages:

MVC :: Pass Parameter From Controller To View And Back To Another Controller?

Aug 16, 2010

I have a simple model where a Person has Gifts. I have a view which is a list of Gifts belonging to one Person.

My problem is with the Create action for a new Gift. I want it to default to the PersonID that we are already viewing the list of Gifts for. I tried simply passing the last PersonID (they are all the same)

Html.ActionLink("Create New", "Create", new { id = Model.Last().PersonID }) which works fine if there is already at least one Gift for that person but if this is the first Gift I don't have a value.

My Gift List controller knows the PersonID I want to pass but the view doesn't.

How do I pass this PersonID from my Gift List controller to my Gift Create controller via the Gift List view? Or is there a better way to do this?

View 2 Replies

MVC :: Create A Partial View And A Controller That Will Feed Data To the View?

Jan 27, 2010

Can i create a partial view and a controller that will feed data to the view, and if i render that partial in a Master page, the Data will show on whatever URL i am?

Or is there another way of showing content from database on every page(view)?

View 2 Replies

MVC :: Passing Model Object To View And From View To Controller?

Aug 6, 2010

I've got problem with my app .

I've got such classes (this is some kind of tree structure):

[Code]....

[Code]....

in Index() action i've got this piece of code

[Code]....

[Code]....

View 2 Replies

How To Send Dropdown Selected Value To Mvc Controller

May 22, 2010

How can i use dropdown selected value to asp.net mvc controller for filling another dropdown

View 1 Replies

MVC :: Using json And Jquery To Send A Form To The Controller?

Nov 21, 2010

i am using json and jquery to send a form to the controller like below, when i click submit validation occers but line is executed even if form is invlid. How can i tell if form validation failed or succeded using javascript?

[Code]....

View 2 Replies

How To Send Complex Types To MVC2 Controller Via Jquery (Ajax )

Feb 22, 2011

I am posting a Jquery Json serialized object to my controller but not all of the data is getting passed. One of the members is a complex type that is also Json serialized. This is the one that isn't getting through to the controller.

Here is the class I'm passing to my controller via Ajax post. Note the complex type, RoutingRuleModel.

SourceCodeModel.cs:

[code]....

Problem: SourceCodeModel contains correct values EXCEPT for it's complex member: RuleModel, which comes back as a RoutingRuleModel with default (null or 0's) values.

View 1 Replies

How To Get Value From View To Controller

Nov 20, 2010

I have a View:

<div class="editor-field" id = "nick">Nick <%: Html.TextBoxFor(model => model.Nick)%><img src="/Content/Images/loading.gif" alt = "loading...."/>
<%: Ajax.ActionLink("Check", "Check", new AjaxOptions { UpdateTargetId = "check-valid", LoadingElementId = "loading"})%>
</div>

I used: Nick = ViewData.Model.Nick in ActionLink as below, but I cannot get value of Nick from View.

<%: Ajax.ActionLink("Check", "Check", new {Nick = ViewData.Model.Nick}, new AjaxOptions { UpdateTargetId = "check-valid", LoadingElementId = "loading"})%>

View 1 Replies

MVC :: Return A View Of A Different Controller?

Aug 29, 2010

I came upon this when had problem trying to return a view of a different controller.

In controller1, I have view view1.

In Action1 of controller2, I wanted to do something like:

public ViewResult Action1()
{
return View("/Controller1/View1");
}

but, found out, I couldn't do it. So I searched and found this:[URL]

One guy there responded and said that, for my case, it is possible to do things like below:

return View("~/Views/Controller1/View1.aspx");

this is considered an acceptable MVC practice. Is it OK, good, perfect to do so in the asp.net MVC realm?

View 5 Replies

MVC :: Get Some Data From One Controller To Other's One View?

Jan 18, 2011

I have a website. there's master page with a menu implemented as a partial view Menu.ascx. This menu is a list of available categories which can be choosen. There's a separate controller for this view. the controller just gets all available categories from database and passes to the view as a list. here's the view's code

[Code]....

and controller for this view

[Code]....

there's other controller which is responsible to retrieve data for content page when one of categories is seletced.

[Code]....

So, i want somehow to get the current category in Menu.ascx.

View 3 Replies

Connected Between View And Controller?

Nov 30, 2010

I'm a newbie and I tried finding a solution of this error message:


"The model item passed into the
dictionary is of type
'NerdDinner.Controllers.DinnerFormViewModel',
but this dictionary requires a model
item of type
'NerdDinner.Models.Dinner'"

There are similiar problem error but not the same context problem. I believe that the problem is located in the edit.aspx and still i can't solve it.

DinnersController:
//
// GET: /Dinners/Create
public ActionResult Create()
{
Dinner dinner = new Dinner()
{
EventDate = DateTime.Now.AddDays(7)
};
return View(new DinnerFormViewModel(dinner));
}

Models:

[Code].....

View 3 Replies

How To Controller Determine Which View To Use In Mvc

Feb 1, 2011

i just strated with asp.net mvc. My doubt is in a controller we use

public ActionResult Index()
{
return View();
}

so how a relevent view is returned for a particular controller.

View 4 Replies

MVC :: Possible ActionLink To A Different View / Controller?

May 13, 2010

I have the following code and wanted to know how to use the ActionLink par to to a page with a seperate controller/view and pass the Mode.ProjectId into this other controller/view.

View 4 Replies

MVC :: No Connecttion Between View And Controller?

Nov 30, 2010

"The model item passed into the dictionary is of type 'NerdDinner.Controllers.DinnerFormViewModel', but this dictionary requires a model item of type 'NerdDinner.Models.Dinner'"

There are similiar problem error but not the same context problem. I believe that the problem is located in the edit.aspx and still i can't solve it.

I'm using VS 2010 and ASP.net MVC 2

// Fullmetalboy

[Code]....

View 1 Replies

MVC :: Getting The Value Of Text Box From View To Controller?

Jan 24, 2011

I want to stop a windows service by clicking a button, but my boss is asking me to do this in MVC. I know the code of stopping and restarting the window service, but when I am trying to do this in MVC, I get an error. I created two buttons on my View page

[Code]....

In my controller, I defined the methods for each button

[Code]....

I have a class

[Code]....

when I run the web site and I enter something on the tesxt box and press the restart service button, I get the error resource is not found

Requested URL: /Post/Action

and the URL changes too. How can I configure so that I can get the name that I typed in my text box to my controller.

View 2 Replies

MVC :: Use The Same View To Access The Different Controller?

Jan 18, 2011

I am new to MVC. Now I have an application needs to be built using MVC. I want to show all the information in one view(or form), but the data are coming from different controllers. how the system knows the data in textbox1 goes to controller1 and the data from database in controller2 returns to textbox2 in the same view(or form)?

View 7 Replies

C# - Can Send Different View Models To A View?

Feb 4, 2011

I am implementing a view for Food. (ASP.NET MVC2) Then depending on the type (say fruit or vegetable for example) I will change the view.

Can I do this without creating a seperate view for fruit and vegetable?

I.e. Say we have url structure like [URL] and don't want [URL] [URL]

So I want to be able to change the view depending on the type. I'm using a tabstrip control from telerik, to give you an of the difference in the views - it'd just be say - not displaying one particular tab for Veg, and displaying it if fruit, for example.

Can a view accept two different view models ? so when we hit [URL] the code determines what type the object is (Fruit or Vegetable) then sends either FruitViewModel or VegetableViewModel ? If I just send one viewmodel how can I control the logic to display or not display certain things in the view?

View 3 Replies

C# - How To Get The Id From / Controller / Action / Id From Within A View Page

Sep 22, 2010

From inside a viewpage, how can I reference the id from the url /controller/action/id without getting this data from the model?

View 3 Replies

MVC :: Trying To Pass A Parameter From A View To Another Controller

Apr 18, 2010

i have a view /categoria/index

[Code]....

i am trying to call the action from /imovel/index

with an id

but the thing is that i am getting null

[Code]....

View 2 Replies

MVC :: Post Data From View To Controller?

Mar 24, 2010

I'm a php programmer (code igniter) but interested in learning ASP.net MVC, I have a few question regarding this new exciting framework In php codeigniter's controller I can easily catch a post variable using

[Code]....

In comparison in ASP.net MVC we can create an action method that will accept post variable (but the parameter can get very crowded if we're passing a lot)

[Code]....

Or using FormCollection

[Code]....

Is there a way to catch post variable in ASP.net that looks like php's codeigniter? I mean not by adding the parameter, because I wanted a controller method that is flexible in receiving post request A controller that can accept and process any post request like in php (where we don't have to put that parameter to the controller method, we just call them

[Code]....

View 3 Replies

MVC :: Passing Data From Controller To View

Nov 16, 2010

I have setup an httppost that sends a string into my controller, searches for some results using linq, and then sends the results to a view. In debug stepping through the code I can see the data that I am looking for being passed into the return view statement, but the page just appears to refresh (it doesn't render the view as expected with the result). why my controller fails to redender the view? (note: I didn't include the view because I can send a ToList() to it without an issue. For example, return View(_entities.Persons.ToList());

[HttpPost]
public ActionResult RenderSearch(string usersearchtext)
{
if (usersearchtext != null)
{
var search_results = from s in _entities.Persons
where s.Description.Contains(usersearchtext)
select s;
return View("SearchResult", search_results.ToList());
}
else
{
throw new NotImplementedException();
}
}

View 8 Replies

MVC :: Data From Action In Controller To View

Jan 19, 2011

So I have a dropdown in a form which when at item is selected postback to database and get some values which I am now storing in an object. I need to get the values from this object into textboxes on the form in the view..how can I do this???

View 2 Replies

MVC :: Really An Implementation Of Model - View-Controller?

Feb 8, 2010

In MVCs with which I have worked, the Controller has the job of co-ordinating a number of views, consequent to some user action against the model.

However in ASP MVC, there never appears to be more than 1 view resulting from an http request (please correct me if I am wrong). Instead the "Controller" in ASP MVC appears to be a URL Routing Target.

Also, in my (admittedly limited) experience, the Model in MVC is intended to be a model of the problem domain of the application. However in ASP MVC, the "Model" appears to be a model of the
data binding of the corresponding view.

View 3 Replies

MVC :: Controller Class Not Available In Add View MVC2?

May 12, 2010

Hi I have created the following controller i want to add view that should have the data access class UserMagnament.Controller.menuitems but when i add view by right clicking on view folder,it is not showing "UserMagnament.Controller.menuitems" in add data class

No controller is shown such as homecontoller, accounts controller, UMController(My Controller) etc i have converted my solution from mvc 1 to mvc2. i checked the web.config. it seems ok for MVC2

[Code]....

View 6 Replies

MVC :: Passing Objects Between View And Controller?

Sep 2, 2010

I would like to pass List<SelectListItem> (not selected item but the whole "List" object) back to controller.

for example in my GET controller i would have this

ViewData["list"] = some select list from repository;

then on post I would like to get the list back from view..pretty much i'm trying to use ViewData["list"] as storage..this way I would use ajax to remove or add items to/from the list.

View 10 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved