开发者

Vertical Align a Bread Crumb using ASP.Net <asp:SiteMapPath> control

Using a "asp:SiteM开发者_运维技巧apPath" control along with Web.sitemap, I'm able to get a bread crumb navigate horizontally like this

Home > Manage People > Requirements >

Can a bread crumb navigation using a "asp:SiteMapPath" control be changed ? so that it comes vertically like this

  • Home >
  • Manage People >
  • Requirements >

Thanks in advance, Easwar.


<ul style="list-style-type: none;">
<asp:SiteMapPath ID="SiteMapPath1" runat="server" >
<NodeTemplate>
    <li>
        <a href='<%# Eval("url") %>' title='<%# Eval("description") %>' >
            <%# Eval("title") %>
        </a>
    </li>
</NodeTemplate>
</asp:SiteMapPath>
</ul>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜