Click here to Skip to main content
15,922,325 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: 'Using' in asp.net Pin
SHatchard24-Oct-07 2:55
SHatchard24-Oct-07 2:55 
GeneralRe: 'Using' in asp.net Pin
Imran Khan Pathan24-Oct-07 3:38
Imran Khan Pathan24-Oct-07 3:38 
Questionindexing server Pin
venky45624-Oct-07 2:28
venky45624-Oct-07 2:28 
AnswerRe: indexing server Pin
John-ph24-Oct-07 4:05
John-ph24-Oct-07 4:05 
GeneralRe: indexing server Pin
venky45624-Oct-07 4:15
venky45624-Oct-07 4:15 
QuestionPopup window Pin
taltal8124-Oct-07 1:58
taltal8124-Oct-07 1:58 
AnswerRe: Popup window Pin
John-ph24-Oct-07 2:12
John-ph24-Oct-07 2:12 
Questionto get list of controls from content place holder Pin
SunithaNallana24-Oct-07 1:55
SunithaNallana24-Oct-07 1:55 
AnswerRe: to get list of controls from content place holder Pin
John-ph24-Oct-07 2:02
John-ph24-Oct-07 2:02 
GeneralRe: to get list of controls from content place holder Pin
SunithaNallana29-Oct-07 18:14
SunithaNallana29-Oct-07 18:14 
GeneralRe: to get list of controls from content place holder Pin
John-ph30-Oct-07 3:49
John-ph30-Oct-07 3:49 
Questionmail.Attachments Pin
taltal8124-Oct-07 1:43
taltal8124-Oct-07 1:43 
AnswerRe: mail.Attachments Pin
Abhijit Jana24-Oct-07 3:03
professionalAbhijit Jana24-Oct-07 3:03 
GeneralRe: mail.Attachments Pin
John-ph24-Oct-07 3:40
John-ph24-Oct-07 3:40 
QuestionOnSelectedNodeChanged Event of Trevview in ASP.net Pin
Learning ASP.NET24-Oct-07 1:35
Learning ASP.NET24-Oct-07 1:35 
AnswerRe: OnSelectedNodeChanged Event of Trevview in ASP.net Pin
Jintal Patel24-Oct-07 1:56
Jintal Patel24-Oct-07 1:56 
hi
protected void btnSubmit_Click(object sender, EventArgs e)
{

ArrayList CategoryArray = new ArrayList();

foreach (TreeNode tn in treeCategory.Nodes)
{
if (tn.Checked == true)
{
CategoryArray.Add(tn.Value);
}
CategoryArray = GetCategoryIDList(CategoryArray, tn);

}

}
public ArrayList GetCategoryIDList(ArrayList array,TreeNode tn)
{
foreach (TreeNode tchild in tn.ChildNodes)
{
if (tchild.Checked == true)
{
array.Add(tchild.Value);
}
GetCategoryIDList(array, tchild);

}
return array;
}


you get total node selected in CategoryArray
if you have any problem then tell me

Jintal Patel

GeneralRe: OnSelectedNodeChanged Event of Trevview in ASP.net Pin
Learning ASP.NET24-Oct-07 2:02
Learning ASP.NET24-Oct-07 2:02 
GeneralRe: OnSelectedNodeChanged Event of Trevview in ASP.net Pin
Jintal Patel24-Oct-07 3:04
Jintal Patel24-Oct-07 3:04 
GeneralRe: OnSelectedNodeChanged Event of Trevview in ASP.net Pin
Learning ASP.NET24-Oct-07 3:13
Learning ASP.NET24-Oct-07 3:13 
GeneralRe: OnSelectedNodeChanged Event of Trevview in ASP.net Pin
Jintal Patel24-Oct-07 3:47
Jintal Patel24-Oct-07 3:47 
QuestionHow can i store entire path of a file which has uploaded through asp.net upload control Pin
yogesh_softworld12324-Oct-07 1:19
yogesh_softworld12324-Oct-07 1:19 
AnswerRe: How can i store entire path of a file which has uploaded through asp.net upload control Pin
N a v a n e e t h24-Oct-07 1:31
N a v a n e e t h24-Oct-07 1:31 
AnswerRe: How can i store entire path of a file which has uploaded through asp.net upload control Pin
Spunky Coder24-Oct-07 1:34
Spunky Coder24-Oct-07 1:34 
AnswerRe: How can i store entire path of a file which has uploaded through asp.net upload control Pin
Guffa24-Oct-07 9:15
Guffa24-Oct-07 9:15 
QuestionCopy/Paste Functionality with GridView in ASP.net Pin
Learning ASP.NET24-Oct-07 1:02
Learning ASP.NET24-Oct-07 1:02 

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.