You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
446 B

using OboutInc.TextMenu;
using System.Web.UI.WebControls;
public class cs_fromxml : System.Web.UI.Page
{
protected PlaceHolder placeHolder1;
private void Page_Load(object sender, System.EventArgs e)
{
System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
xmlDoc.Load(Server.MapPath("TextMenuXML.xml"));
System.Xml.XmlNodeList menuNodes = xmlDoc.SelectNodes("/TextMenu");
foreach (System.Xml.XmlNode menuNode in menuNodes)