Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have created a ASP.Net treeview with checkboxes.I want to call a server side code when check box is selected/deseleted without a postback.

Can any one help me with this as I am new to ajax .

Thanks in advance..
Posted

1 solution

This question makes no difference. Create a event hander for checkbox and set AutoPostBack property of checkbox to true in your TreeView(Checkbox should be there in your ItemTemplate of TreeView).
Try this:
HTML
ASP.NET
<asp:checkbox id="chk" runat="server" text="test" autopostback="true" oncheckedchanged="chk_CheckedChanged" />

C#:
C#
protected void chk_CheckedChanged(object sender, EventArgs e)
{
    //Write your code or call a function here.
}



--Amit
 
Share this answer
 
v2

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