Reputation: 709
I have asp.net web app based on web forms. A 'Drop Down List' has AutoPostBack property. My backend code is working well. But after changing the 'Drop-Down List' value, my page reloaded and start to show the top of the page.
I want to keep 'Drop Down List' item focused after selecting a value. How can I do that? Here is my 'Drop Down List' control code.
<asp:DropDownList runat="server" ID="ddlPackagingMaterials" CssClass="form-control select2" OnSelectedIndexChanged="ddlPackagingMaterials_SelectedIndexChanged" AutoPostBack="true"/>
Upvotes: 0
Views: 299
Reputation: 5068
In web.config
<system.web>
<pages maintainScrollPositionOnPostBack="true">
Upvotes: 1