MVC :: How To Retrieve URL From Another View Of Controller By Code

Sep 19, 2010

I want to know url of View from another controller. The following is structure

Controller

Home

Account

View

HomeIndex.aspx

AccountLogin.aspx

Now, I want to goto Index view of controller Home from view Login of controller Account

I know I can use method this.RediectToAction("Index", "Home") to do it but I don't want to method. It will fail to redirect when view or controller renamed.

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

C# - Retrieve URL For Action From Controller?

Dec 20, 2010

I am calling a Controller Action from a view, within that controller I need to invoke another Action which I will invoke to save the view to a network location as either HTML or Image.

How do I retrieve the URL to an Action from within a Controller. I need the actual URL, this means RedirectionToAction or View() wont work.

Why? I need to pass in a URL which will contain a call to a View. This view will be used to generate an image or HTML document using the System.Windows.Forms.WebBrowser.

.NET 3.5; C#; MVC 1;

I could do something like this, but its dirty ... well it leaves me with that dirty feeling.

using(Html.BeginForm("Action", "MyWorkflowController",
new {
MyId = "bla",
URLToGenerateImage = Url.Action("GenerateImage", "MyWorkflowController")
}))

View 2 Replies

MVC :: How To Retrieve Checkboxlist Values In The Controller

Apr 23, 2010

I am having a form in a view page that looks as below:

[Code]...

Now when the form is posted, I am trying to retrieve the values submitted in the controller as below:

[Code]...

The string value shows null when I submit the form by checking some checkboxes. Is this the way to retrieve the values or am I doing something wrong? And I cannot use html control because all other controls on the form are server controls and I am not sure if I can only make this control a html control. And I am not sure how can I bind the values to it?

View 2 Replies

MVC :: Can't Save And Retrieve Cookie In Controller?

Feb 9, 2011

I have class LoginController, the action login and it run okie:

[Code]....

And on control LoginUserControl that inherits Logon model, I get cookie then login action, but while i debugging, it's cookie is null though login is success.

[Code]....

[Code]....

[Code]....

[Code]....

But variable userName always null, Although I add cookie,

[Code]....

View 4 Replies

MVC :: How Can Add A Plugin Or Similar To Retrieve The Data Across Every Controller

Mar 18, 2010

ASP.NET MVC 2 and the display of commonly used data.Let's say for example, I wanted to have a listing of "Latest News" items on the right hand of my web page. Back in the day, I would made a user control called NewsList.ascx, put some DB data retrieval code in the code-behind and drop the user control intoI would like to do the same thing, but using MVC. Obviously, I don't want to place DB retrieval code into every controller to retrieve news items for the ViewData.How could I add a "Plugin?" or similar to retrieve the data across EVERY controller?

View 4 Replies

MVC :: Retrieve Javascript Values Back In The Controller?

Mar 17, 2011

may I ask one seemingly simple question - I have a Javascript function that loops through my checkboxes(they're plain HTML checkboxes, not using the helper methods), and for every checked one it's adding its value to an array. So now, how do I get this array in my controller so that I can assign its values to the fields, i.e. object's properties?

This is my checkbox code:

[Code]....

and the script:

[Code]....

and here's the controller code:

[Code]....

Now, this langID should be assigned every checked checkbox's value, so I guess I'm missing a loop here too, it should go until some border that's gotten from the client script or something, but my bigger problem is how to retrieve the posted values from the javascript, something like PHP's POST["array"]...?

This Request.Form works fine when just one checkbox is checked, but now I need it to work with several checked..

View 12 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

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

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# - 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







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