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

ASP.NET

 
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 
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 
hi protected void trvCategories_SelectedNodeChanged(object sender, EventArgs e)
{

foreach (TreeNode nc in trvCategories.Nodes)
{
if (nc.Checked)
{
if (ViewState["tree"] != null)
{
if (ViewState["tree"].ToString() != trvCategories.SelectedNode.Text)
nc.Checked = false;
else
ViewState["tree"] = trvCategories.SelectedNode.Text;
}
else
{
ViewState["tree"] = trvCategories.SelectedNode.Text;
}
}
}
}


this will work for one level of tree .if in your tree have multiple level then make change in logic of getting child node.it will work..you want that also then tell me

Jintal Patel

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 
GeneralRe: DDL and selected item identity Pin
Sarfaraj Ahmed24-Oct-07 1:17
Sarfaraj Ahmed24-Oct-07 1:17 
GeneralRe: DDL and selected item identity Pin
John-ph24-Oct-07 1:25
John-ph24-Oct-07 1:25 

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.