Loading to specific point on page

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Loading to specific point on page

    Hello

    I have a datalist on a webpage which initially displays
    all the entries in the item view mode. When I select an
    item to edit it reloads the page and displays the selected
    item in the edit view. The problem I have with this is
    that it reloads the browser window displaying the top of
    the form. This is fine for an entry at the top of the
    grid but if it is towards the bottom the user has to
    scroll down the list to the appropiate item. Is their way
    to reload the page without it going back to the top of the
    page. Or is it best to reorder my grid displaying the
    selected item as the first in the list. If so how do I do
    this?

    Thanks

    David
    David Guest

  2. Similar Questions and Discussions

    1. Hyperlink to a specific point on another page - publisher 2003
      I am writing a page with a callendar on and want to link ( using a hotspot ) to an article on another one o my pages. There are several articles on...
    2. which sprite is under a specific point
      i've a point, and a lot of sprite. how can i obtain which sprite is under it? thank you
    3. main point of loading speed
      if a page always have some picture that totally have near 250k does this a main point of affect the loading speed?
    4. Can any one point me to how CLR, specific to JIT manages security?
      Hi, Are there any documented articles on how .net applies security specifically keeping JIT in view. What i assume is there will be different JIS...
    5. n00b question: Point flashMX button to specific URL
      Select(click) the button. Open the action panel. choose the getUrl action. "giganews" <comcastsucks@comcast.net> schreef in bericht...
  3. #2

    Default Re: Loading to specific point on page

    Two techniques I have seen, although I don't know the full extent on browser
    compatibility. One is to turn Smart Navigation on, and let IE take care of
    keeping the page location. The other is to use the
    Page.RegisterStartupScript to send a snippt of javascript that sets the
    focus on a particular control.

    --
    James J. Foster, DotNetCoders
    [url]http://www.dotnetcoders.com[/url]


    "David" <centraldevelopment@nospam.com> wrote in message
    news:01fc01c36023$4bbbda30$a101280a@phx.gbl...
    > Hello
    >
    > I have a datalist on a webpage which initially displays
    > all the entries in the item view mode. When I select an
    > item to edit it reloads the page and displays the selected
    > item in the edit view. The problem I have with this is
    > that it reloads the browser window displaying the top of
    > the form. This is fine for an entry at the top of the
    > grid but if it is towards the bottom the user has to
    > scroll down the list to the appropiate item. Is their way
    > to reload the page without it going back to the top of the
    > page. Or is it best to reorder my grid displaying the
    > selected item as the first in the list. If so how do I do
    > this?
    >
    > Thanks
    >
    > David

    James J. Foster Guest

  4. #3

    Default Re: Loading to specific point on page

    James J. Foster wrote:
    > Two techniques I have seen, although I don't know the full extent on
    > browser compatibility. One is to turn Smart Navigation on, and let IE
    > take care of keeping the page location. The other is to use the
    > Page.RegisterStartupScript to send a snippt of javascript that sets
    > the focus on a particular control.
    Please note that Smart Navigation will only work in Internet Explorer.

    --

    Jos Branders


    Jos Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139