How to Create a Treeview Menu in ASP.NET with C#?
Answer / guest
Microsoft.Web.UI.WebControls.TreeView Treeview11
public void PopulateTree()
{
TreeNode nodeProdDetail, nodeProdMaster;
nodeProdMaster = new TreeNode();
nodeProdMaster.Text = "Master1";
nodeProdMaster.ID = "1";
nodeProdDetail = new TreeNode();
nodeProdDetail.Text = "Detail1";
nodeProdDetail.ID = "1.1";
nodeProdDetail.NavigateUrl = "SomePage.aspx";
nodeProdMaster.Nodes.Add(nodeProdDetail);
Treeview1.Nodes.Add(nodeProdMaster);
nodeProdMaster = new TreeNode();
nodeProdMaster.Text = "Master2";
nodeProdMaster.ID = "2";
nodeProdDetail = new TreeNode();
nodeProdDetail.Text = "Detail2";
nodeProdDetail.ID = "2.1";
nodeProdDetail.NavigateUrl = "SomeOtherPage.aspx";
nodeProdMaster.Nodes.Add(nodeProdDetail);
Treeview1.Nodes.Add(nodeProdMaster);
}
| Is This Answer Correct ? | 25 Yes | 22 No |
Write a program which has a function and that function should take 2 or 3 or any number of strings and it should return the largest common prefix of all those strings. If there is no common prefix it should return an empty string. for eg:- INPUT OUTPUT glo {glory,glorious,glod} gl {glad,glow} {calendar,phone} empty string
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
Automatically Hyperlink URLs and E-Mail Addresses in ASP.NET Pages with C#
IS Array list is generic or non generic
program to check if a number is "perfect number".
how to change password in .net with c # with ado.net and also SQL server 2008 change password
Coding for Manipulate XML File Data Using C#?
write a Program to copy the string using switch case.
Create a class called Accounts which has data members like ACCOUNT no, Customer name, Account type, Transaction type (d/w), amount, balance D->Deposit W->Withdrawal If transaction type is deposit call the credit(int amount) and update balance in this method. If transaction type is withdraw call debit(int amt) and update balance. Pass the other information like Account no,name,Account Type through constructor. Call the show data method to display the values.
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
how do i copy textbox contents of 1 form to another form
Code for Reading and writing from a file in c#?