I am very new to this..
I have used a repeater control and it fetches about 100 records from the database.
Inside the repeater control, I am having 4 columns and in one column, I hav used one dropdown list as
<asp:DropDownList ID="st" Runat="server" AutoPostBack=true OnSelectedIndexChanged="go_change" CssClass=rtd Runat=server>
<asp:ListItem text="--Select--" Value='NULL' Selected="True" />
<asp:ListItem text="Accepted" Value="Accepted" />
<asp:ListItem text="Rejected" Value="Rejected" />
</asp:DropDownList>
In the gochange method
I am calling the window.open function.
My problem is
If I am clicking the 50th row's dropdownlist box, it is opening the new window and it always goes back to the First row(refreshing that page). How to avoid this? Please help me to solve this... Because each time scrolling down is a great pain to the user.
Thanx in Advance..