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


Similar Messages:

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

MvcContrib - Get Area Into MenuBuilder ActionLink?

Jan 12, 2011

I am using MenuBuilder with code like this:

public static MenuItem MainMenu(UrlHelper url)
{
Menu.DefaultIconDirectory = url.Content("~/Public/Images/");
Menu.DefaultDisabledClass = "disabled";
Menu.DefaultSelectedClass = "current";
return Menu.Begin(
Menu.Items("",
Menu.Action<HomeController>(p => p.Index(), "Home")
),
Menu.Items("",
Menu.Secure<HomeController>(p => p.About(), "About")
),
Menu.Items("",
Menu.Action<RegulationController>(p => p.Index(null), "Compliance")
)/* This is in the Compliance area */
).SetListClass("menu");
}

But I am also using MvcContib Areas and in the code above the final menu item is in an 'Area' called 'Compliance'.

(There are two other areas in the Mvc application and the first in the list of registered areas is called 'Legislation')

What happens is the following:

When a page is rendered (I am using the standard WebFormsViewEngine) the Urls are all rendered using the 'Legislation' area!!?

E.g. http://localhost:1337/Legislation/Home or http://localhost:1337/Legislation/Home/About

and finally http://localhost:1337/Legislation/Regulation

The first two links should not pick up the 'Legislation' area. The last menu item should be in the 'Compliance' area.

How do I prevent the erroneous Area (Legislation) being rendered on the first two links?

How do I get the MenuBuilder markup in the Site.Master to accept an 'area' attribute or get it picked up automatically from the Controller for each link?

View 1 Replies

Forms Data Controls :: Passing Dynamic Value To Detail View Of Grid Through Object Selecting Parameter

Oct 4, 2010

Passing dynamic value to Detail view of grid through object selecting parameter

View 4 Replies

MVC :: Consuming Mvc Portable Area / Call Embedded Portable Area View From Another Web Project?

Nov 18, 2010

I have created a simple mvc portable area project with a simple view displaying hello world.

In the portable areas project i added the view as embedded resource ,compiled to dll and added the reference

in the consuming web project.

How can i call the embedded portable area view from another web project

View 2 Replies

Passing The Value Of A Textboxfor Into ActionLink?

Oct 12, 2010

I am trying to pass the value that a user enters into a html.Textboxfor to an html.Action link. As shown below :

<%=Html.TextBoxFor(m => m.OrderQty)%>
<p class="button" >
<%: Html.ActionLink("Add to cart",
"AddToCart",
"ShoppingCart",
new { id = Model.Product.ProductId, Qty = Model.OrderQty }, "")%>
</p>

But when i put a breakpoint in the AddToCart Qty is always 0 :-(

View 1 Replies

MVC :: Html.ActionLink Parameter Order

May 25, 2010

I've never been able to understand why it is that some things are made in a particular way, and Html.ActionLink is one of these. In Global.asax, if I want to create a route, it has the format:

[Code]....

The order of the necessary parameters here is "name/controller/action/extra params". When using Html.ActionLink, the parameter order is "name/action/controller/extra params", which is much the same but with two of them switched around. To make things more confusing, the rendered html from the Html.ActionLink has the original order "controller/action/extra params" with the name inside of the anchor tag. Why do this? It's easy enough to memorize that the order is switched for absolutely no reason I can discerne, but why do it in the first place?

View 8 Replies

MVC :: Passing Sensitive Information Through HTML ActionLink?

Jan 29, 2011

I did some google searching on this, but I could not find anything useful.

Basically what I am trying to do is pass some sensetive information to an ActionResult through the click of a HTML ActionLink.

The information I need passing through is, the ProductID and the User IP Address.

So just to clarify:

1) User clicks { I like Product } link (HTML ActionLink)

2) That sends the Product ID and the IP Address of the user to the ActionResult in the Controller.

View 11 Replies

MVC :: OnComplete Ajax.ActionLink Parameter Not Json In MVC 3?

Jan 27, 2011

I posted this on Stack overflow [URL] but have not had a solution, just completely different way of doing it without using the Ajax.* helpers so I'm wondering if anyone has an Ajax.* solution here?I'm using MVC 3. I have a method on the controller that returns a Json object, according to this question it should be returned to me as Json, but I am finding that is not the case[URL]
here's the code that I have:

[Code]....
And the controller:
[Code]....
The first message box displays the response text which is:{"Success":True, "objectId":"testing"}
the second message box displays undefinedSo it is coming back to the client correctly, I'm just not sure how to get it out?...Stefan

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

SQL Reporting :: How To Display Parameter Prompt Area In Web Report Viewer

Feb 6, 2010

I tired to create a parameterized report in Report Builder 2.0 with parameters having multiple values fetched from the database. I really liked that feature, which allows me to select the desired records from the dropdown. I uploaded the report in SSRS 2008 and I could view the reports with parameters from the Report Manager of Report server. But when the report is called through the Report Viewer, I didn't get any of the parameters displayed inside the report viewer. The only way I could found is to manually give the dropdowns in the web page and sent that values to report by setting its parameter. But at here I cannot multi-select the values. So I would like to get the exact functionality given through the report manager in the report viewer.

get the report parameters in the Report Viewer of ASP.NET?

View 2 Replies

How To Pass JavaScript Function As A Parameter In The Route Values Of Ajax Actionlink

Apr 20, 2010

I need to pass javascript function as a parameter value to the ajax actionlink in asp.net mvc app. how can we achieve this?

View 1 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 :: 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 :: ContentTemplate Not Works When Add View In Area?

Oct 20, 2010

I have Asp.Net MVC project where I have added area for admin. In the root I have ContentTemplates folder where I have .tt generators for views and they work fine. But when I add view in the ~/areas/admin the views are using default MVC content generators and not my. I decided to add folder with my custom ContentTemplates to ~/areas/admin folder but anyway it uses default MVC contentTamplates.Did anybody this before - I mean using contentTemplates in Areas? If yes then I will check all things again..

View 5 Replies

MVC :: Rendering Area Partial View From External Dll

Nov 25, 2010

I am quite new to MVC and am gradually overcoming all my 'but WebForms can do that' issues but I still have one. I wish to have components which I can deploy into an Area in order to keep things nice and tidy. This area will have a bunch of re-usable partial views like this. MyArea/Views/Shared/MyAreaControl.ascx I can render this MyAreaControl partial view fine in other Views inside that area but it fails when I try to render it from a not inside the area (e.g. view in the root of the site). I am essentially using this syntax

<% Html.RenderPartial("MyAreaControl", new { area = "MyArea" }); %>

which seems to only look for this partial view inside the root Views folder, not the area one despite me specifying the area. Is this a restriction of the system, a bug - or am I just doing it wrong. ADDENDUM: Turns out it appears to be an assembly issue. My controller is found in a separate assembly from my MVC Application. Doing a bit of fiddling with moving my control inside and outside of the area and the separate dll I came to the following confusion:

- If partial view is in its own area and the controller is part of the MVC application dll - I can render it from my home view
- If partial view is not in its own area and the controller is part of an external dll I can render it from my home view
- If partial view is not in its own area and the controller is part of the MVC application dll - I can render it from my home view
- If partial view is in its own area and the controller is part of an external dll I CANNOT render it from my home view

The controller for path '/' was not found or does not implement IController.

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

Web Forms :: View Data From A Database Based On The Selected Area From Tag?

Apr 27, 2010

i have this code in html but i dont know why i cant take the correct value

the "xcity" take only the last value ??

[code]....

View 3 Replies

MVC :: - View - Passing Multiple Objects To The View And Selecting Data From The Lists?

May 17, 2010

I have a view which takes two objects: booking and list of reasons for canceling that booking.I have two classes: clsBooking, clsBookingCancelationReason I can read both objects in my view - no problems there. After I read the objects, I display the booking details and I generate a list of cancelation reasons in the following way:

[Code]....

The code above generates a list of cancelation reasons.How do I pick up the selected ReasonId from the list?
I need to generate a link that will contain the bookingId and the selected reason for canceling the booking.I can get the bookingId out easily since it's stored in the Model...but how do I go about the selected ReasonId?

View 5 Replies

AJAX :: Like To Close The ModalPopup By Click On The Area Surround Area Of The Pop Up Panel?

Feb 23, 2010

I used ModalPopup Control on this link, [URL]How should I write the code that to close pop up by click the area outside the pop up panel?I use AjaxControlToolkit-Framework3.5SP1

View 7 Replies

MVC :: Load View And Partial View (Master / Detail) With Default Parameter?

Sep 8, 2010

Members view (index) that lists members that users can select to show a partial view in the same view with details for the selected memberUses jquery (Ajax.ActionLink) to call a partial view method in the members controller to then load the members detail sectionWorks fine up to here....but I'd like to load the partial view with "member" details for a default or random member on initial load -- ie not through the Actionlink selectionHow do I invoke the partial view method on the initial load?

View 4 Replies

MVC :: Passing Id In Parameter?

Aug 26, 2010

I am using url in my mvc application like /product/edit/5, should change it because users can

change id parameter and access different product as this Id directly refer to Id in product table, I have validation there for user to access product.

should I continue with it or should I change it as application has many users

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

MVC :: Passing Dropdown Value From Partial View To View (parent)?

Jan 10, 2011

I have a partial view that has only a dropdown, i have called this partial view from a view. I can able to pass the model to this partial view and it renders successfully. However when some user selects a particular text from the dropdown, the corresponding value should be passed to view and it should be displayed in the label in view.

View 7 Replies

Passing A Parameter To Stored Procedure In C#?

Mar 23, 2011

When I try the following:

[Code]....

I get an error saying No overload for Add method takes 2 arguments. HOw would i pass the PaycheckID in then as a paramter?

View 2 Replies







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