---
title: "HyperLink in ASP.Net"  
description: "The HyperLink control is used to navigate from one page to another page.  aspHyperLink ID=\"HyperLink1\" runat=\"server\"HyperLinkWe can change its prope"  
author: "Pushpendra Singh"  
published: 2010-10-11  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/159/hyperlink-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# HyperLink in ASP.Net

The HyperLink [control](https://yourviews.mindstick.com/view/83439/bipartisan-gun-control-bill-passed-in-us-after-decades) is used to navigate from one [page to another page](https://www.mindstick.com/forum/118/problem-in-display-content-of-one-page-to-another-page).\

```
<asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink>
```

![HyperLink in ASP.Net](https://www.mindstick.com/mindstickarticle/d5a25736-a947-4375-8bab-a23742cfea92/images/aa660ee3-2569-4ee5-af69-5b8bc71c1b6c.png)

We can change its properties like BackColor, ForeColor, BorderColor, BorderStyle, BorderWidth, Height etc.

```
<asp:HyperLink ID="HyperLink1" runat="server" Font-Bold="True" Font-Italic="True" Font-Names="Arial" Font-Size="Larger" ForeColor="#000099" NavigateUrl="~/Default.aspx">HyperLink</asp:HyperLink>
```

![HyperLink in ASP.Net](https://www.mindstick.com/mindstickarticle/d5a25736-a947-4375-8bab-a23742cfea92/images/2c6f549d-541e-4521-89bb-f19ddbe469d3.png)

```
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/Home.aspx">Goto Main Page</asp:HyperLink>
```

Navigate url specify the [destination Url](https://answers.mindstick.com/qa/33722/what-is-the-maximum-length-of-destination-url).

## ![HyperLink in ASP.Net](https://www.mindstick.com/mindstickarticle/d5a25736-a947-4375-8bab-a23742cfea92/images/2d8708fe-7cc6-4587-bab2-ba202498b8b7.png) ![HyperLink in ASP.Net](https://www.mindstick.com/mindstickarticle/d5a25736-a947-4375-8bab-a23742cfea92/images/f41f415c-90f4-43de-a196-2dee61998979.png)

When you [click](https://www.mindstick.com/articles/12423/social-login-magento-2-one-click-to-register-social) the Hyperlink Goto [Home Page](https://answers.mindstick.com/qa/95562/how-do-i-change-the-safari-home-page-on-a-mac) then it will redirected to the HomePage.

---

Original Source: https://www.mindstick.com/articles/159/hyperlink-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
