Hello Everybody
I am working on a web based application wherein I have used the tree view, and a toolbar control. I have deployed the application on the WEB Server windows server 2003, using the setup and deployment wizard in the VS.NET IDE. Also tried by copying the files on to the webserver, but I am not able to see the treeview control and the toolbar control.instead of that it shows the names of the nodes as if they are labels. Another problem is that, I have written some vb.net code for the selectedindexchanged event of the treeview node and am also calling a javascript function through html code using the onclick method. Now it so happens that in order to execute both these code fragments i need to click the node twice. why is this so?. Please suggest.
Regards
Rahul.Kate
rahulk@easypack.bz
DotNetJunkies User - 27 Aug 2004 15:57 GMT
I am having the same rendering problems on one development box, but not the other. If anyone has any ideas...
The reason you have to click the node twice is because AutoPostback is set to True. The NavigateUrl fires before the postback, then the postback clears the results of the NavigateUrl.
HTH
---