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


Similar Messages:

MVC :: Cannot Call Different Controller Using Actionlink?

Feb 5, 2010

I have one problem with actionlink. My Example is: i have one view and controller named as XYZ.aspx and XYZ.vb controller , in this view i put below line

<%=Html.ActionLink("Manage", "Index", "Advertisement", New With {.aintCampaignid = Cam.CampaignID})%>

I have another view and controller named as Index.aspx and Advertisement.vb if click on manage link in XYZ view it will call to advertisement controller and index function But iam getting [URL], it wont call ..

View 2 Replies

MVC :: Controller Not Called From Actionlink Or RedirectToAction

Mar 4, 2011

I am new to MVC2 and have hit a wall. When I use an action link to jump back to a previous page that I have already been on, my controller is not called but the page is rendered correctly. Is this some sort of caching that I am not aware of? This also happens with a RedirectToAction call from another Controller. rfm is the Model...

return RedirectToAction("Search", rfm);

Here is the actionlink...

<%: Html.ActionLink("Search", "Search", "Reference")%>

View 3 Replies

MVC :: Display Html.Actionlink Through Controller?

Oct 16, 2010

I am trying to display Html.Actionlink through controller(MVC). Here is the example what am trying to do...

public string test(){
string testString = "<%: html.ActionLink('click', 'test', new AjaxOptions() { UpdateTargetId = 'test' }) %>";
return testString;
}

i want to display testString in view. but am not getting the actionlink in view..i can display anchors which is given below:-

public string test(){
string testString = "<a href ="test"> click here</a>";
return testString;
}

View 3 Replies

Controller AJAX Method To Return ActionLink

Apr 4, 2011

I am fairly new to MVC and just trying to achieve something which I think shouldn't be too complicated to achieve. Just want to know what the best approach for that is. I have an Event-RSVP application (NerdDinner kind) where you go to view details of the event and then click on an AJAX link that will RSVP you for the event.

<%
if (Model.HasRSVP(Context.User.Identity.Name))
{
%>
<p>

You are registered for this event!

<%:
Ajax.ActionLink("Click here if you can't make it!", "CancelRegistration", "RSVP", new { id = Model.RSVPs.FirstOrDefault(r => r.AttendeeName.ToLower() == User.Identity.Name.ToLower()).RSVPID }, new AjaxOptions { UpdateTargetId = "QuickRegister"})
%>
</p>
<%
}
else
{
%>
<p>................

View 2 Replies

Make Mvc Configurable Html.ActionLink Controller / Method

May 7, 2010

I have ascx partial view with html-layout like that

<%=Html.ActionLink<PersonController>(x => x.Publications(param1, param2, ... )) %>

My ascx is pretty big & I'd like to reuse it, changing controller/method in Html.ActionLink with another controller/method. Method of another controller has the same signature as PersonController.Publications. Whats best way how to make controller/method configurable for my layout.

View 1 Replies

Html.actionlink Doesn't Pass Parameter To Controller Action

May 12, 2010

m having problem in passing parameter to controller action, i have done the following

Url.Action("SchoolDetails","School",new{id=item.SchoolId}) and my controller action follows

public ActionResult SchoolDetails(string schoolId,_ASI_School schoolDetail)
{
schoolDetail = SchoolRepository.GetSchoolById(schoolId);
return View(schoolDetail);
}

i dn't know why the schoolId above in action is getting null..

View 1 Replies

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 :: Can Not Define ActionLink In View?

Dec 30, 2010

i have a view that i need to add the following code to it :-

<%= Ajax.ActionLink( "event",
"Register", "ArticleComment" new { id= Model.article1.Article_ID },
new AjaxOptions { UpdateTargetId="rsvpmsg" }) %>

but it raised a red line under Ajax.ActionLink indicating that it do not contain definition for ActionLink

View 7 Replies

MVC :: Actionlink Not Passing Parameter To View In A Different Area?

Jul 1, 2010

i have an actionlink that doesnt seem to work as it should.

i am trying to pass a parameter to a URL that is in a different area and it isnt carrying the parameter.

[Code]....

the link generated is;

localhost/user/vacancy/details

whereas what i want is;

localhost/user/vacancy/details/6

View 3 Replies

MVC :: Html.ActionLink From Within An Area To A View In The Root Of The Site?

Apr 28, 2010

I know that to use link a view found in one view to one in another, i need to use;

[Code]....

But what if i want to link FROM an area to a view in the root of the site? This view is in the views folder found in the root, NOT in any area.

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

Html.ActionLink In Partial View - All The Links Of Articles Lead To The Same Url

Mar 11, 2010

I am using the following code in my master page:

<% Html.RenderAction("RecentArticles","Article"); %>


where the RecentArticles Action (in ArticleController) is :

[ChildActionOnly]
public ActionResult RecentArticles()
{
var viewData = articleRepository.GetRecentArticles(3);
return PartialView(viewData);
}

and the code in my RecentArticles.ascx partial view: <li class="title"><span><%= Html.ActionLink(article.Title, "ViewArticle", new { controller = "Article", id = article.ArticleID, path = article.Path })%></span></li>

The problem is that all the links of the articles (which is built in the partial view) lead to the same url- "~/Article/ViewArticle" . I want each title link to lead to the specific article with the parameters like I'm setting in the partial view.

View 2 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 :: 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







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