up vote 0 down vote favorite
share [g+] share [fb]

I'm using v.s 2008 with c#.

I have a treeview on a master page. And i want to change a node's text. if current user's id isn't equels 222.

if (kul.M_Kullanici_id != 222)
   {
       tvMaind.Nodes[0].ChildNodes[0].ChildNodes[0].Text = "çağın";
   }

My treeview is a sitemap. And t.v has xmldatasource. i wanna rename a node's text when user which has 222 id. I m looking current user in masterpage onunload event. and i m changing text. i can see that change on watch. but in cant see change on the page. I thing xmlsource reload after i change node's text.

thanks for your helps.

link|improve this question

45% accept rate
Could you be more descriptive? What is the structure of the tree and what identifies the node you want to update. Last but not least: what have you tried and what errors do you get? – noesgard Jul 29 '09 at 9:33
Are you testing this using id 222? – ThePower Jul 29 '09 at 9:44
yes sure compiler is entering that block. – cagin Jul 29 '09 at 9:45
feedback

2 Answers

You just retrieve required TreeNode and set its Text property.

> tvMenu.Nodes[I].Text = ""; // I: index of node to be retrieved.
link|improve this answer
it doesnt work... – cagin Jul 29 '09 at 9:39
@cagin: do you have any error? shall you tell me the node you need to identify? – Ahmed Jul 29 '09 at 9:42
No i havent any error. but any changes on the treeview. I thinnk that treeview reload from xml when i changed node's text. I change that on unload event of masterpage. – cagin Jul 29 '09 at 9:53
I afraid I cannot understand you, what do you mean by "I think that treeview reload from xml when i changed node's text"? – Ahmed Jul 29 '09 at 9:57
1  
@cagin: try to update node text after binding treeview to xmldatasource, this will solve your issue. – Ahmed Jul 29 '09 at 10:53
show 1 more comment
feedback

Do you want to delete a node? However your code is to update a node text.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.