Click here to Skip to main content
15,891,607 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How can i send gridview within mail Pin
g00fyman12-Sep-06 18:59
g00fyman12-Sep-06 18:59 
QuestionASP.NET 2.0 ReportViewer with missing Print Option? Pin
Christopher Stratmann12-Sep-06 6:59
Christopher Stratmann12-Sep-06 6:59 
AnswerRe: ASP.NET 2.0 ReportViewer with missing Print Option? Pin
l0kke12-Sep-06 7:14
l0kke12-Sep-06 7:14 
GeneralRe: ASP.NET 2.0 ReportViewer with missing Print Option? Pin
Christopher Stratmann12-Sep-06 7:35
Christopher Stratmann12-Sep-06 7:35 
QuestionRedefine URL in Asp.Net 2.0 Pin
shapper12-Sep-06 6:35
shapper12-Sep-06 6:35 
AnswerRe: Redefine URL in Asp.Net 2.0 Pin
Clickok12-Sep-06 9:21
Clickok12-Sep-06 9:21 
QuestionTreeView Collapse/Expand On Item Click Pin
Clickok12-Sep-06 6:02
Clickok12-Sep-06 6:02 
AnswerRe: TreeView Collapse/Expand On Item Click Pin
g00fyman12-Sep-06 18:48
g00fyman12-Sep-06 18:48 
you will need to trap the TreeView1_TreeNodeDataBound

something like this should do it

protected void TreeView1_TreeNodeDataBound(object sender, TreeNodeEventArgs e)
 {
   if (e.Node.Parent == null)
   {
     e.Node.NavigateUrl = string.Empty;
     e.Node.SelectAction = TreeNodeSelectAction.Expand;
   }
 }


regards,
g00fy
QuestionMultilanguage web site Pin
shapper12-Sep-06 5:57
shapper12-Sep-06 5:57 
AnswerRe: Multilanguage web site Pin
lmoelleb13-Sep-06 3:22
lmoelleb13-Sep-06 3:22 
Questionhelp please, String comparing Pin
Meax12-Sep-06 5:47
Meax12-Sep-06 5:47 
AnswerRe: help please, String comparing Pin
l0kke12-Sep-06 6:01
l0kke12-Sep-06 6:01 
GeneralRe: help please, String comparing Pin
Meax12-Sep-06 6:37
Meax12-Sep-06 6:37 
GeneralRe: help please, String comparing Pin
Meax12-Sep-06 6:44
Meax12-Sep-06 6:44 
GeneralRe: help please, String comparing Pin
l0kke12-Sep-06 7:18
l0kke12-Sep-06 7:18 
QuestionLogin control keeps forgetting me Pin
Martin Gibson12-Sep-06 5:39
Martin Gibson12-Sep-06 5:39 
AnswerRe: Login control keeps forgetting me Pin
Martin Gibson12-Sep-06 22:35
Martin Gibson12-Sep-06 22:35 
AnswerRe: Login control keeps forgetting me Pin
Britney S. Morales13-Sep-06 3:01
Britney S. Morales13-Sep-06 3:01 
GeneralRe: Login control keeps forgetting me Pin
Martin Gibson25-Oct-06 23:33
Martin Gibson25-Oct-06 23:33 
Questionpublishing a project Pin
abu-sultan12-Sep-06 5:38
abu-sultan12-Sep-06 5:38 
AnswerRe: publishing a project Pin
g00fyman12-Sep-06 18:52
g00fyman12-Sep-06 18:52 
GeneralRe: publishing a project Pin
abu-sultan13-Sep-06 10:23
abu-sultan13-Sep-06 10:23 
GeneralRe: publishing a project Pin
abu-sultan13-Sep-06 10:28
abu-sultan13-Sep-06 10:28 
QuestionHTTPHANDLERS Pin
kjosh12-Sep-06 4:57
kjosh12-Sep-06 4:57 
QuestionATLASASP.NET Domain for Sale Pin
substatica12-Sep-06 4:22
substatica12-Sep-06 4:22 

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.