Click here to Skip to main content
15,896,348 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Copy/Paste Functionality with GridView in ASP.net Pin
SHatchard24-Oct-07 1:05
SHatchard24-Oct-07 1:05 
GeneralRe: Copy/Paste Functionality with GridView in ASP.net Pin
Learning ASP.NET24-Oct-07 1:08
Learning ASP.NET24-Oct-07 1:08 
QuestionImplementing Copy/Paste functionality from Excel shhet to GridView in asp.net Pin
Learning ASP.NET24-Oct-07 0:48
Learning ASP.NET24-Oct-07 0:48 
QuestionDDL and selected item identity Pin
Sarfaraj Ahmed24-Oct-07 0:24
Sarfaraj Ahmed24-Oct-07 0:24 
AnswerRe: DDL and selected item identity Pin
John-ph24-Oct-07 0:37
John-ph24-Oct-07 0:37 
GeneralRe: DDL and selected item identity Pin
Sarfaraj Ahmed24-Oct-07 0:54
Sarfaraj Ahmed24-Oct-07 0:54 
GeneralRe: DDL and selected item identity Pin
John-ph24-Oct-07 1:01
John-ph24-Oct-07 1:01 
GeneralRe: DDL and selected item identity Pin
Sarfaraj Ahmed24-Oct-07 1:24
Sarfaraj Ahmed24-Oct-07 1:24 

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.