Click here to Skip to main content
15,879,348 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Whne i click a link left div,i want show that information in right div.How can i do that one.PLz send some sample........
Posted

First,Fill data in 1st Div Dynamically by using <asp:Table> and then by using Javascript you can fill 2nd Div with new <asp:Table>
 
Share this answer
 
First call javascript function on click of link. in js function set innerHTML property of second div to value which you have to show.

document.getElementById(div2).innerHTML = value;
 
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