Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi how do i take in form different panels

if button click automatically panel change
Posted
Comments
Charan_Kumar 8-Apr-14 4:50am    
explain briefly what you need?
hilbert hussen 8-Apr-14 8:29am    
http://img.brothersoft.com/screenshots/softimage/b/bistone_hotel_management_system-248277-1245146112.jpeg

I need this type of page
buttons click under buttons the data will change
OriginalGriff 8-Apr-14 5:22am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
Use the "Improve question" widget to edit your question and provide better information.

1 solution

Try this,
<asp:panel id="Panel1" visible="false" runat="server" xmlns:asp="#unknown">
<asp:panel id="Panel2" visible="false" runat="server" xmlns:asp="#unknown">
<asp:panel id="Panel3" visible="false" runat="server" xmlns:asp="#unknown">

on 1st button click in .cs page

panel.visible=true;
pane2.visible=false;

on 2nd button click in .cs page

pane2.visible=true;
panel.visible=false;


like this do for all panel on every button click
 
Share this answer
 
Comments
hilbert hussen 8-Apr-14 9:00am    
in windows form

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