my code is as follows

DataSet ds = new DataSet();
        string connStr = "Data Source=PARITAS00024;Initial Catalog=MenuDb;Persist Security Info=True;User ID=sa;Password=paritas123";
        using (SqlConnection conn = new SqlConnection(connStr))
        {
            string sql = "Select MenuId, MenuTitle, MenuDesc, MenuURL, ParentMenuId from tblMenus where Status=1 and RecordStatus=1 order by ParentMenuId, DisplayOrder";
            SqlDataAdapter da = new SqlDataAdapter(sql, conn);
            da.Fill(ds);
            da.Dispose();
        }
        ds.DataSetName = "Menus";
        ds.Tables[0].TableName = "Menu";
        DataRelation relation = new DataRelation("ParentChild", ds.Tables["Menu"].Columns["MenuId"], ds.Tables["Menu"].Columns["ParentMenuId"], true);

        relation.Nested = true;
        ds.Relations.Add(relation);

        System.Web.UI.WebControls.XmlDataSource xds = new System.Web.UI.WebControls.XmlDataSource();
        xds.TransformFile = "~/TransformXSLT.xsl";
        xds.XPath = "MenuItems/MenuItem";
        xds.Data = ds.GetXml();
        xds.ID = "xmlDataSourceMenu";

        Menu1.DataSource = xds;
        Menu1.DataBind();

is this correct way of using the xmldatasource ?

link|improve this question

Depends on contents of xml and xsl file .. What exactly is your question ? – Madhur Ahuja Feb 11 '11 at 8:48
here im not using xmldatasource control, instead i created my own xmldatasource object and im using it. all i want to know is, is this the correct way ? – Harsha Feb 11 '11 at 9:02
feedback

2 Answers

up vote 1 down vote accepted

The advantages of using of data sources are related to declarative programming: move the focus from how work must be done to the results. If you are using a datasource in imperative way, you lose all the advantages.

In that code you are giving your menu some XML data got transforming the XML representation of a DataSet returned by a query through an XSL transformation: do you really need to do all that work?

Why don't populate the menu programmatically?

  foreach (DataRow parentItem in ds.Tables[0].Rows)
  {
    MenuItem item = new MenuItem((string)parentItem["Name"]);
    menu.Items.Add(categoryItem);

    ...
  }

or, why don't use the XmlDataSource in the aspx:

<asp:XmlDataSource TransformFile="~/TransformXSLT.xsl" XPath="MenuItems/MenuItem" ID="xmlDataSourceMenu" runat="server" />

and, in code behind:

...
xmlDataSourceMenu.Data = ds.GetXml();
...
link|improve this answer
well my requirement is to use a xml file to display the menu, without using any data control in aspx page. i guess you are correct. – Harsha Feb 21 '11 at 17:16
feedback

I know this post is old enough (though it's newest among other with same question/answer I've found in the internet)

Your code is running just fine.

I've tried using both xmldatasource in aspx page and code behind using the same code as the code above, and they result just fine except one thing. the string from ds.GetXml() yields Uppercase which makes me have to use the uppercase in the .xslt file to for each field retrieve in select list.

So, does anyone got the same problem as me and know the solution to my case?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.