---
title: "How Add Icon to the project Asp.Net MVC with Bootstrap"  
description: "How Add Icon to the project Asp.Net MVC with Bootstrap"  
author: "Candido Reyes"  
published: 2016-09-09  
updated: 2016-09-12  
canonical: https://www.mindstick.com/forum/34174/how-add-icon-to-the-project-asp-dot-net-mvc-with-bootstrap  
category: "asp.net"  
tags: ["bootstrap", "asp.net mvc"]  
reading_time: 1 minute  

---

# How Add Icon to the project Asp.Net MVC with Bootstrap

```
<td>            @Html.ActionLink("Modificar", "Edit", new { id = item.EmpleadoID }, new { @class = "btn btn-primary btn-sm" })            @Html.ActionLink("Detalles", "Details", new { id = item.EmpleadoID }, new { @class = "btn btn-warning btn-sm" })            @Html.ActionLink("Eliminar", "Delete", new { id = item.EmpleadoID }, new { @class = "btn btn-danger btn-sm" })        </td>
```

## Replies

### Reply by Anonymous User

I Hope this code help for you.\

```
<script src="~/Scripts/jquery-3.1.0.min.js"></script><script src="~/Scripts/bootstrap.min.js"></script><link href="~/Content/bootstrap.min.css" rel="stylesheet" />  <div class="container" style="margin-top:100px;"> <a href="@Url.Action("Save","Home")"  class="btn btn-default">    <span class="glyphicon glyphicon-floppy-disk"></span> Save  </a></div>
```

![How Add Icon to the project Asp.Net MVC with Bootstrap](https://www.mindstick.com/mindstickforums/804972fb-2e6c-4a30-8b8e-1bf7f5169e2f/images/7324ca4b-d5a2-4f14-912e-9184b6f7c4ed.png)\
![How Add Icon to the project Asp.Net MVC with Bootstrap](https://www.mindstick.com/mindstickforums/804972fb-2e6c-4a30-8b8e-1bf7f5169e2f/images/584442a0-35e2-40ca-a0a7-fce4cef5c22f.png)\
Thanks.


---

Original Source: https://www.mindstick.com/forum/34174/how-add-icon-to-the-project-asp-dot-net-mvc-with-bootstrap

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
