vote up 0 vote down star

Hi there. 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.

flag

35% 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 at 9:33
Are you testing this using id 222? – ThePower Jul 29 at 9:44
yes sure compiler is entering that block. – cagin Jul 29 at 9:45

2 Answers

vote up 0 vote down

You just retrieve required TreeNode and set its Text property.

> tvMenu.Nodes[I].Text = ""; // I: index of node to be retrieved.
link|flag
it doesnt work... – cagin Jul 29 at 9:39
@cagin: do you have any error? shall you tell me the node you need to identify? – Ahmed Jul 29 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 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 at 9:57
Okay. 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. – cagin Jul 29 at 10:32
show 1 more comment
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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