Click here to Skip to main content
16,019,349 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a three category, i will show the category in my web page like a table design with separate click event.If user click anyone of category the particular event will process.Is possible?


please help me...
Posted
Updated 16-May-12 20:20pm
v2
Comments
fjdiewornncalwe 16-May-12 15:09pm    
Of course it is possible. You need to implement a code behind handler, link it up to the client side control for the click event and then do something with it in the code behind.

1 solution

ya its possible...

eg:
<asp:linkbutton id="LinkButton1" runat="server" onclick="LinkButton1_Click" xmlns:asp="#unknown">LinkButton



inside the click button write the code u want

C#
protected void LinkButton1_Click(object sender, EventArgs e)
        {
//code

        }
 
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