خلط خريطة الموقع والصفحات الديناميكية (قاعدة البيانات)؟

StackOverflow https://stackoverflow.com/questions/2017415

سؤال

لدي ثابت .sitemap. ملف لموقعي. أريد أن إضافة 5 فئات فرعية لكل الفئة المركزية (@منتجات) لذلك سيظهرون في القائمة (القائمة هو مساعد مخصص يعمل، أحتاج فقط إلى إضافة إلى Sitemap.Provider بعض الصفحات في مدة العرض...) هل هذا ممكن؟

خريطة الموقع:

<?xml version="1.0" encoding="utf-8" ?>
<siteMap>
  <node controller="Home" action="Index" title="Home" description="Homepage">
    <node controller="Newsroom" action="Index" title="News" description="" />
    <node controller="Products" action="Index" title="Products" description="">
      <node controller="Products" action="MainCat1" title="MainCat1" isDynamic="true" dynamicParameters="category" />
      <node controller="Products" action="MainCat2" title="MainCat2" isDynamic="true" dynamicParameters="category" />
      <node controller="Products" action="MainCat3" title="MainCat3" isDynamic="true" dynamicParameters="category" />
    </node>
  </node>
</siteMap>
هل كانت مفيدة؟

المحلول

انتهى بي الأمر بإنشاء مخصص SiteMapProvider.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top