---
title: "How can we navigate from one view to another ?"  
description: "How can we navigate from one view to another ?"  
author: "Anupam Mishra"  
published: 2016-02-14  
updated: 2017-01-15  
canonical: https://www.mindstick.com/forum/33975/how-can-we-navigate-from-one-view-to-another  
category: "asp.net"  
tags: ["c#", "asp.net", "asp.net mvc"]  
reading_time: 1 minute  

---

# How can we navigate from one view to another ?

Hi Everyone,I want to navigate from one [view](https://yourviews.mindstick.com/view/84701/layoffs-in-google-india-2023-view) to another view through using hyperlink . Can [anyone give me](https://answers.mindstick.com/qa/41194/can-anyone-give-me-some-high-and-low-points-of-each-of-the-four-first-presidential-administrations) a appropriate solution.Thank you.

## Replies

### Reply by Hari Gorinta

I tried it but when we click on it ,it is first invoking the specified action and then it is again invoking its binded controller and showing the same page

### Reply by Manoj Bhatt

If we want to navigate from one to another view then we are using the ActionLink method . The below code will create a simple URL which helps to navigate to the “Home” controller and invoke the Details action.

```
@ Html.ActionLink("Home","Details")  or
```

```
@Html.ActionLink(
            linkText: "GoToDetails",
            actionName: "Details",
            controllerName: "Home",
```


---

Original Source: https://www.mindstick.com/forum/33975/how-can-we-navigate-from-one-view-to-another

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
