This is pretty basic guys but i really dont know how to do this.
okay.
i have to panels on my webpage.
what i need to do is i need to hide panel..
i have this
<script runat = "server">
private void hidepanel()
{
pnl_Add.Visible = true;
pnl_List.Visible = false;
}
</script>
if i click the name, it will hide the panel(the panel which have this code)
<a href="#" onclick ='hidepanel()'><%# Eval("First_name") %> <%# Eval("Last_name") %></a>
i just started asp.net only yesterday. hope you can help me!
thanks guys!!