Click here to Skip to main content
15,921,884 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problem In TreeView Control Pin
lavanya.thadde18-Feb-07 20:13
lavanya.thadde18-Feb-07 20:13 
U need to get the Name of the Topics and also the page Numbers in some collection say dataset and then bind to the treeview.

Here is the code..

foreach(DataRow dr in ds.Tables[0].Rows)
{
TreeNode tn = new TreeNode();
tn.Text = dr["Topic_Name"] + " " + dr["PageNumber"];
tn.Value = dr["TopicNo"];
TreeView1.ChildNodes.Add(tn);
}

Hope this will be Useful.

Lavanya Thadde
QuestionExporting datagrid to pdf format Pin
micydon16-Feb-07 18:08
micydon16-Feb-07 18:08 
QuestionProblem in getting class variable value in javascript/html [modified] Pin
kmuthuk16-Feb-07 9:38
kmuthuk16-Feb-07 9:38 
AnswerRe: Problem in getting class variable value in javascript/html Pin
Guffa16-Feb-07 10:52
Guffa16-Feb-07 10:52 
GeneralRe: Problem in getting class variable value in javascript/html Pin
kmuthuk16-Feb-07 11:02
kmuthuk16-Feb-07 11:02 
AnswerRe: Problem in getting class variable value in javascript/html Pin
Guffa16-Feb-07 15:07
Guffa16-Feb-07 15:07 
Questiondatagrid-direction Pin
luckyve16-Feb-07 8:59
luckyve16-Feb-07 8:59 
AnswerRe: datagrid-direction Pin
MoustafaS16-Feb-07 10:43
MoustafaS16-Feb-07 10:43 
GeneralRe: datagrid-direction Pin
luckyve16-Feb-07 20:34
luckyve16-Feb-07 20:34 
QuestionUser can circumvent the Security Pin
kjosh16-Feb-07 8:35
kjosh16-Feb-07 8:35 
AnswerRe: User can circumvent the Security Pin
Michael Sync16-Feb-07 21:36
Michael Sync16-Feb-07 21:36 
Questionweb developer server to IIS Pin
arunkamath16-Feb-07 7:22
arunkamath16-Feb-07 7:22 
AnswerRe: web developer server to IIS Pin
Marcus J. Smith16-Feb-07 7:59
professionalMarcus J. Smith16-Feb-07 7:59 
QuestionRegular Expression Problem Pin
adnanrafiq16-Feb-07 7:20
adnanrafiq16-Feb-07 7:20 
AnswerRe: Regular Expression Problem Pin
ednrgc16-Feb-07 9:20
ednrgc16-Feb-07 9:20 
GeneralRe: Regular Expression Problem Pin
adnanrafiq16-Feb-07 9:40
adnanrafiq16-Feb-07 9:40 
Questionasp.net & Oracle Pin
aransiola16-Feb-07 6:14
aransiola16-Feb-07 6:14 
AnswerRe: asp.net & Oracle Pin
sathesh pandian19-Feb-07 23:25
sathesh pandian19-Feb-07 23:25 
QuestionApplication settings in constructor Pin
mail57235216-Feb-07 5:31
mail57235216-Feb-07 5:31 
AnswerRe: Application settings in constructor Pin
kubben16-Feb-07 6:00
kubben16-Feb-07 6:00 
AnswerRe: Application settings in constructor Pin
badgrs16-Feb-07 6:01
badgrs16-Feb-07 6:01 
AnswerRe: Application settings in constructor Pin
thowra16-Feb-07 7:52
thowra16-Feb-07 7:52 
Questionhow to create a link in a grid view's each row to navigate to some other page Pin
theprofound16-Feb-07 4:25
theprofound16-Feb-07 4:25 
AnswerRe: how to create a link in a grid view's each row to navigate to some other page Pin
badgrs16-Feb-07 4:49
badgrs16-Feb-07 4:49 
AnswerRe: how to create a link in a grid view's each row to navigate to some other page Pin
-Dr_X-16-Feb-07 5:04
-Dr_X-16-Feb-07 5:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.