Shanmugam Gk

Shanmugam Gk

  • NA
  • 13
  • 65.1k

How to bind the values to gridview?

Dec 15 2010 7:12 AM

 
 
This is my code.......
 
NodeEnumerator myEnumerator = new NodeEnumerator(this.UltraWebTree1);
        string s = string.Empty;
        string s1 = string.Empty;
        while (myEnumerator.MoveNext())
        {
             s += myEnumerator.Current.Text + ": Level: "
                 + myEnumerator.Current.Level.ToString() + "<br>" +  myEnumerator.Current.TargetUrl +  "<br>" ;
                Response.Write(s);

            }
 
 
 
I am getting values from ultrawebtree and shows the values in aspx page....but i want to show the values in gridview...please give me the source code.....

Answers (3)