Asp.net 引导组件在asp中不工作

Asp.net 引导组件在asp中不工作,asp.net,twitter-bootstrap,Asp.net,Twitter Bootstrap,我正在实现我的aspx页面中的以下代码。但是我没有得到输出(即,我想在我的按钮上使用字形图标)。你能帮帮我吗。 现场实际代码: <button type="button" class="btn btn-default btn-lg"> <span class="glyphicon glyphicon-star"></span> Star </button> 明星 我已经在我的aspx页面中实现了这一点 <html xmlns="ht

我正在实现我的aspx页面中的以下代码。但是我没有得到输出(即,我想在我的按钮上使用字形图标)。你能帮帮我吗。 现场实际代码:

<button type="button" class="btn btn-default btn-lg">
  <span class="glyphicon glyphicon-star"></span> Star
</button>

明星
我已经在我的aspx页面中实现了这一点

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link href="bootstrap.css" rel="stylesheet" />
    <script src="jquery.js"></script>
    <script src="bootstrap.js"></script>
</head>
<body>
    <form id="form1" runat="server">
        <span class="glyphicon glyphicon-search"></span>
        <button type="button" class="btn btn-default btn-lg">
  <span class="glyphicon glyphicon-star"></span> Star
</button>
    </form>
</body>
</html>

明星

检查css文件的路径。剩余的所有按钮css都在工作,但此图标不工作可能会帮助您。。。