Hi I am making a forum , i need help regarding making like dislike button as we see in this site to every reply.
Is there any chance that i can get some code or and idea about how to design those like dislike mechanism. I have tried this but didnt got success. so
please guide me on this. This will be a gr8 help from the experts.
Thanks in Advance....

Khargesh RajputPosted Dec 25, 2014, 6:24 AM
Kedar PawgiPosted Dec 25, 2014, 6:21 AM
Khargesh RajputPosted Dec 25, 2014, 5:01 AM
{
//increment by 1 in database count for your variable for logged in user
BtnLike.Enabled = false; btnDislike.Enabled = true;
}
protected void btnDislike_Click(object sender, EventArgs e)
{ // decrement by 1 in database count for your variable
BtnLike.Enabled = true ; btnDislike.Enabled = false ;
}