BOOK: Beginning ASP.NET Dynamic Websites w/ Web Matrix
This is the forum to discuss the Wrox book Beginning Dynamic Websites: with ASP.NET Web Matrix by Dave Sussman, James Greenwood, Alex Homer, Colt Kwong, John M. West; ISBN: 9780764543746
You are currently viewing the BOOK: Beginning ASP.NET Dynamic Websites w/ Web Matrix section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I have two asp:listboxes with buttons to transfer values from one to the other. The button calls a function on the .cs page, and works fine except that it shoots me to the top of the page when it is finished. Is there any way to get around that (return the page to the area where the listboxes are)?
If you are using IE, then you can put "SmartNavigation" property of the page to "TRUE" in the page directive.
eg:
<%@ Page language="c#" smartnavigation="true" AutoEventWireup="False"
Inherits="NameSpace.Class" %>