bootstrap组件不在asp中工作

时间:2013-11-20 08:26:22

标签: asp.net twitter-bootstrap

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

<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>

0 个答案:

没有答案