私はasp.net 4.0 webformプロジェクトで作業しています。サイト マップのタイトルにアクセスしているときに、そのページのタイトルが表示されません。
これが私のサイトマップファイルの詳細です
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/index.aspx" title="Home" description="The WebSite's Home Page">
<siteMapNode url="~/UPS/UPSLabelFormUK.aspx" title="UK Label" description="UK Label" />
<siteMapNode url="~/ContactUS.aspx" title="ContactUS" description="Contact US" />
<siteMapNode url="~/KnowledgeBase.aspx" title="Knowledge Base" description="KnowledgeBase" />
<siteMapNode url="~/PartBase.aspx" title="PartSearch" description="Part Search" />
</siteMapNode>
</siteMap>
私は localhost:4990/UK/Label のように UPSLabelFormUK.aspx にアクセスしていますが、ページにタイトルが表示される場合と表示されない場合があります。そのようなルーティングコードを書いたので、ページが来ています
void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.MapPageRoute("UK_Label", "UK/Label", "~/UPS/UPSLabelFormUK.aspx");
SiteMap.SiteMapResolve += SiteMap_SiteMapResolve;
}
私はコードをデバッグし、いつかノードがnullであることを発見しました。ここに SiteMapResolve イベントの行があります
node = SiteMap.Provider.FindSiteMapNode(handler.VirtualPath);
サイトマップ解決イベントの私の部分的なコードは次のようになります
var node = SiteMap.CurrentNode;
var rc = HttpContext.Current.Request.RequestContext;
if (rc.HttpContext != null)
{
try
{
var route = rc.RouteData.Route;
if (route != null)
{
// when node found in sitemap file and url is routing url
var page = HttpContext.Current.CurrentHandler as System.Web.UI.Page;
//var segments = route.GetVirtualPath(rc, null).VirtualPath.Split('/');
//var path = "~/" + string.Join("/", segments.Take(segments.Length - rc.RouteData.Values.Count).ToArray());
//node = SiteMap.Provider.FindSiteMapNodeFromKey(path);
if (page != null && page.RouteData != null)
{
// if the current page wasn't found in the sitemap, maybe it was becase of routing... let's find out
if (node == null)
{
// See if this page has a route
var handler = page.RouteData.RouteHandler as PageRouteHandler;
// if it was a page Route handler, we are in business
if (handler != null)
{
// try and find the virutal path of the .aspx actually handling the request instead.
node = SiteMap.Provider.FindSiteMapNode(handler.VirtualPath);
}
}
}
仮想パスが ~/UPS/UPSLabelFormUK.aspx を返し、この URL がサイトマップ ファイルに存在する場合にノードが null になる理由を教えてください。正しい解決策を教えてください。