[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

(Evangelos)

12/25/2002 10:26:00 PM

I have a webcontrol with image buttons
<asp:ImageButton id="Home" ImageUrl="home.jpg" OnClick="Home_Click"
runat="server"></asp:ImageButton><br>
<asp:ImageButton id="ContactUs" ImageUrl="home.jpg"
OnClick="ContactUs_Click" runat="server"></asp:ImageButton><br>
<asp:ImageButton id="AboutUs" ImageUrl="home.jpg"
OnClick="AboutUs_Click" runat="server"></asp:ImageButton><br>
<asp:ImageButton id="Demos" ImageUrl="home.jpg" OnClick="Demos_Click"
runat="server"></asp:ImageButton><br>
<asp:ImageButton id="EmailUs" ImageUrl="home.jpg"
OnClick="EmailUs_Click" runat="server"></asp:ImageButton>

and i want to know how if clicked certain buttons i can make another
control change webpage dynamicly? I know it has to deal with
postback/viewstate on buttons but could someone give me an example.
(these buttons are in one control, and i want them to effect a change
in another control).
Thanks