hi AnandM
I change code like below:
<label id="lsea1"><input type="radio" name="iCheck" id="RBmkv" runat="server" onchange="RadioButtonEvent" dir="rtl"/></label>
<label id="lsea1"><input type="radio" name="iCheck" id="RBdvd" runat="server" onchange="RadioButtonEvent"/></label>
and:
protected void RadioButtonEvent(object sender, EventArgs e)
{
string checkedRadioButton = (sender as RadioButton).UniqueID;
if (checkedRadioButton.ToLower() == "rbmkv")
{
GetCustomersPageWise();
}
else if (checkedRadioButton.ToLower() == "rbdvd")
{
GetCustomersPageWisedvd();
}
}
but it doesn't work for me
at first:I use <input> tag but you use <asp:RadioButton> and in <input> there wasn't Autopostback...
so now how I should change code?
BestRegards
Neda