Asp.Net te SiteMap Kullanımı

Merhaba arkadaşlar bu makalemizde SiteMap kullanımına değineceğim. Sitemap kullanarak sayfamızda örnek bir image göstereceğiz.


Screenshot
 












Şekil 1
Web.sitemap
xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
    <siteMapNode url="Default.aspx" title="Ana Sayfa"  description="Ana Sayfa">
      <siteMapNode url="Personel.aspx" title="Personel Listesi" description="Personel Listesi">
        <siteMapNode url="Image.aspx" title="Personel Resimleri"  description="Personel Resim" />
         </siteMapNode>
    </siteMapNode>
</siteMap>

Image.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Image.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
    </div>
        <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
        <asp:SiteMapPath ID="SiteMapPath1" runat="server"
            Font-Bold="true"
            Font-Names="Lucida Sans Unicode"
            Font-Size="Large"
            BackColor="Azure"
            >
        </asp:SiteMapPath>
        <br /><br />
        <asp:Image
            ID="Image1"
            runat="server"
            ImageUrl="~/images/emp-1.jpg"
            Height="300"
            />

         <br />

         </form>
</body>
</html>
    
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...