With RadMenu for ASP.Net, we combined two XML docs into a single Menu in this way (see http://www.telerik.com/community/forums/thread/b311D-ebmcd.aspx):
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
RadMenu1.LoadContentFile( "~/xml/34.xml")
RadMenu1.LoadContentFile("~/xml/recent/34.xml")
End Sub
In the ASP.Net Ajax version of RadMenu, only the second XML doc is loaded.If I comment out the second line, the first XML doc loads successfully. Is this still the correct method to use?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
RadMenu1.LoadContentFile( "~/xml/34.xml")
RadMenu1.LoadContentFile("~/xml/recent/34.xml")
End Sub
In the ASP.Net Ajax version of RadMenu, only the second XML doc is loaded.If I comment out the second line, the first XML doc loads successfully. Is this still the correct method to use?