Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I have a tree view. I have to display some contents in the tree view nodes onmouse over using tooltip or popup. Its working. But I want them to be in a fixed position. I tried a lot. But its not working. So I have added a text box with multiline mode and on clicking the node, I want the contents to be displayed on that text box. I have already fetched the contents from a dataset. How should i display the values in the text area..
Please help .!

Thanks.
Posted

1 solution

Isntead of using asp.net TextBox Control use HTML TextArea Control and display the contents like that

textarea1.value= Dataset.Tables[tableindex].Rows[rowindex][columnindex].ToString();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900