Even If the url is same can i go to different action using Html.RouteLink and Action Link.Like when i click on news link i will go to news details.The url of this page is http://localhost:1390/en-US/latestnews/125.Now if i select the ddl of language in the site header in this pagei need to go to the home page of the site.The ddl (on change) will take the same url but this time it needs to go to action in the sane controller.
Html.Action link and Html.RouteLink
1.2k Views Asked by Sagar At
1
There are 1 best solutions below
Related Questions in ASP.NET-MVC
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Getting and passing MVC Model data to AngularJS controller
- Access property of an object of type [Model] in JQuery
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Bundling and minification issue in MVC
- ASP-MVC Code-first migrations checkbox not active
- Why does Azure CloudConfigurationManager.GetSetting return null
- Dynamic roles list in CustomAuthorize ASP MVC
- Jquery: Change contents of <select> tag dynamically
- Why web API return 404 when deploy to IIS
- MVC route URL not containing parameter
- Invalidate user credentials when password changes
- MVC : Insert data to two tables
- MVC - Only allow users to edit their own data
- Submit Button on Razor View doesn't call Action Result - MVC
Related Questions in ASP.NET-MVC-ROUTING
- MVC route URL not containing parameter
- MVC Routes, adding a filter to existing page
- MVC Routing News Pages
- No HTTP resource was found that matches the request URI 'http://localhost:xxx:
- MVC. Cant see view after HttpPost
- MVC - Ajax.BeginForm() generating empty action
- MVC route attribute no controller
- Webapi Controller - Routing not working
- How to hide model details in url? ASP.NET MVC
- Route with namespace and area still complaining about multiple controller names
- web.api cannot test action
- How to augment actionlink with route values at runtime with JavaScript in ASP.NET MVC 5?
- In RouteConfig, how can I IgnoreRoute for this "Rejected-By-UrlScan" path?
- Create subdomain on the fly like blogger.com using asp.net mvc
- The parameters dictionary contains a null entry for parameter 'id' when change in Routing
Related Questions in HTML-HELPER
- Disable JQGrid row based on cell value using JQuery
- Custom HTML Helpers, What is: this HtmlHelper html
- How to add an Option label on ListBoxFor HTML Helper in ASP.Net MVC
- In an MVC view, what controller and method is called if none is specified in the form tag?
- How to get Display Text from EnumDropDownListFor on post?
- How to navigate to a page using html helper class in navigation drop down menu
- Handle two html helpers for same property
- MVC HTML Helpers: Get all validation attributes
- View is not refreshing when the model is changed in ASP.NET MVC
- T4MVC: Empty link on shared view when controller is in an area
- How to create click event for navigation drop down using html helper class?
- ASP.NET MVC CheckBox List sending always null
- Is this HtmlHelper extension overkill?
- Elegant approach to handle dynamic HTML classes in MVC
- How Can I Conditionally disable the @HtmlEditorFor Based on Model Id ASP.NET Mvc 4
Related Questions in ACTIONLINK
- MVC Routes, adding a filter to existing page
- How to send selected radiobutton value together with html.actionlink in MVC 5
- Link to different controller and pass two values
- T4MVC: Empty link on shared view when controller is in an area
- c# MVC: ajax beginform not working after call from ajax actionlink
- Styling ActionLinks in _LoginPartial compared to _Layout
- @Html.ActionLink is not linking to current area by default
- ActionLink generates url parameters in instead of path parts
- MVC - why use ActionLink instead of hard coding the link?
- @Html.ActionLink is not working
- MVC 4 theme switching with Ajax.ActionLinks
- Use updateNavbarPage to add 'Previous' button for > 2 pages (also applies to updateTabsetPanel)
- C# how to set a class attribute value dynamically in an ActionLink?
- AJAX.ACTIONLINK inside a TR element does NOT do a partial update
- Lambda in Html.ActionLink using razor
Related Questions in ROUTELINK
- .net HTML.RouteLink passes parameter as key-value pair not rout
- How to pass a string type for MapRoute?
- How to make my gatsby link work properly in netlify?
- Insert current URL into @Html.RouteLink parameter to build a link
- Angular 6 - RouterLink navigates but not changing URL
- Html.ActionLink, Url.ActionLink and Html.RouteLink return empty urls
- tooltip for html.RouteLink
- Actionresult doesnt get called by routelink. Formcollection the culprit?
- Asp.net MVC add textbox value to routelink
- Html.Action link and Html.RouteLink
- How to use fragment in Ajax.RouteLink?
- C# MVC: User Password Reset Controller: Issues with email addresses as usernames
- Can an MVC2 or MVC3 html.routelink contain « and »?
- Angular2 RouteLink doesn't work in "a" tag but it's work when I tip it in navigation bar of browser
- RouteLink in HtmlHelper?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The URL will direct to the controller/action on the first routing entry that it matches regardless of how you generate it. I'm not sure exactly what you are trying to accomplish, but I suspect that what you need to do is use javascript to direct to a different url, perhaps generated with
Html.RouteLinkinstead ofHtml.ActionLinkbased on the value of the drop down list when it's selected. If I'm misunderstanding what you are trying to do, please clarify.