Blog Content

    티스토리 뷰

    39.C# ASP.NET - 탐색 WebNavigation [WebNavigationControl]

    반응형
    하이퍼링크를 이용한 예제입니다.

    Default.aspx

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head runat="server">

        <title></title>

    </head>

    <body>

        <form id="form1" runat="server">

          <a href="Introduce.aspx">Introduce.aspx</a><br />

          <a href="FrmMenu.aspx">FrmMenu.aspx</a><br />

          <a href="FrmTreeView.aspx">FrmTreeView.aspx</a><br />

          <a href="http://www.dotnetkorea.com">닷넷코리아</a><br />

          <a href="http://godffs.tistory.com">Godffs블로그</a>

        </form>

    </body>

    </html>


    결과화면

    [그림39-1]



    반응형

    Comments