Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
1k views

WebForm_SaveScrollPositionSubmit is undefined - ASP.NET

I'm upgrading an ASP.NET 1.1 app and have things working but am seeing the Javascript error referenced in the title. From research it appears that ASP.NET is not spitting out the javascript that is ...
0
votes
1answer
299 views

ASP.NET Maintain scroll position after postback in div inside data list and user control

My situation looks like this: I've got x-axis scrollable div that contains buttons with numbers of page displayed. This div is placed in data list inside User Control responsible for displaying news ...
0
votes
2answers
765 views

Maintain div scroll position on postback with html/javascript

Is there a way to maintain the div scroll position on a postback, without using asp? So far I've only found solutions using asp.
0
votes
1answer
242 views

maintainScrollPositionOnPostBack in ASP.NET MVC

How do I maintain the scroll position on a postback in ASP.NET MVC? The directive maintainScrollPositionOnPostBack on the page and in the web.Config does not seem to apply.
0
votes
2answers
168 views

ASP.NET Focus Scrolls Page to Input

I have a few textboxes/labels inside of an UpdatePanel. When I tab out of one of the textboxes, a label has to be updated with some text. This causes focus on the page to reset to the topmost element. ...
0
votes
3answers
784 views

ASP.NET: how to stop page from jumping when using AutoPostBack?

I'm using ASP.NET, and in a Wizard control I have radio buttons where if "Yes" is selected, a panel is shown, but if "No" is selected, the panel is hidden. I have MaintainScrollPositionOnPostBack set ...
0
votes
1answer
466 views

ASP.NET listbox MaintainScrollPositionOnPostBack re-ordering items near bottom reloads listbox at top

I've got an ASP.NET (VB) page with two listboxes. Standard stuff - select an item on left, hit add button and it moves to right, etc. I've also got two buttons to move items up or down in the ...