Stop screen refereshing during a post to 'self'

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paula

    Stop screen refereshing during a post to 'self'

    Is there a way to keep the browser from refreshing the screen during a post back to the same page?
    This is annoying when you are viewing something at the bottom of a page an the post refreshes the
    screen placing you back at the top.

    TIA,

    Paula
  • CountScubula

    #2
    Re: Stop screen refereshing during a post to 'self'

    "Paula" <p_barrett@spam .net> wrote in message
    news:1w41c.1008 05$Xp.434076@at tbi_s54...[color=blue]
    > Is there a way to keep the browser from refreshing the screen during a[/color]
    post back to the same page?[color=blue]
    > This is annoying when you are viewing something at the bottom of a page an[/color]
    the post refreshes the[color=blue]
    > screen placing you back at the top.
    >
    > TIA,
    >
    > Paula
    >[/color]

    If you are posting to the same page, then it is not a refresh, but rather a
    load of a new page (it just happens to be same page) thus you apear at the
    top of the page.

    Now if you would like to jump to this page (same page) and have it start in
    the middle/bottom somewhere, then place this code in the page where you want
    to jump to:

    < A NAME="jumphere" ></A>

    Then if your post use this:

    <FORM ACTION="yourpag e.php#jumphere" ......>


    --
    Mike Bradley
    http://www.gzentools.com -- free online php tools


    Comment

    • Chung Leong

      #3
      Re: Stop screen refereshing during a post to 'self'

      Post into an invisible iframe.

      Uzytkownik "Paula" <p_barrett@spam .net> napisal w wiadomosci
      news:1w41c.1008 05$Xp.434076@at tbi_s54...[color=blue]
      > Is there a way to keep the browser from refreshing the screen during a[/color]
      post back to the same page?[color=blue]
      > This is annoying when you are viewing something at the bottom of a page an[/color]
      the post refreshes the[color=blue]
      > screen placing you back at the top.
      >
      > TIA,
      >
      > Paula[/color]


      Comment

      • CountScubula

        #4
        Re: Stop screen refereshing during a post to 'self'

        "Chung Leong" <chernyshevsky@ hotmail.com> wrote in message
        news:evOdnQ2zOq FyE9vdRVn-uw@comcast.com. ..[color=blue]
        > Post into an invisible iframe.[/color]


        Some times I feel so dumb :)

        --
        Mike Bradley
        http://www.gzentools.com -- free online php tools


        Comment

        • Annie

          #5
          Re: Stop screen refereshing during a post to 'self'

          Chung Leong wrote:[color=blue]
          > Post into an invisible iframe.
          >
          > Uzytkownik "Paula" <p_barrett@spam .net> napisal w wiadomosci
          > news:1w41c.1008 05$Xp.434076@at tbi_s54...
          >[color=green]
          >>Is there a way to keep the browser from refreshing the screen during a[/color]
          >
          > post back to the same page?
          >[color=green]
          >>This is annoying when you are viewing something at the bottom of a page an[/color]
          >
          > the post refreshes the
          >[color=green]
          >>screen placing you back at the top.
          >>
          >>TIA,
          >>
          >>Paula[/color]
          >
          >
          >[/color]
          How would that be done?

          Paula

          Comment

          • Didatus

            #6
            Re: Stop screen refereshing during a post to 'self'

            Annie <AnnB@newsgroup .net> wrote in message news:<ija2c.187 196$uV3.786316@ attbi_s51>...[color=blue]
            > Chung Leong wrote:[color=green]
            > > Post into an invisible iframe.
            > >
            > > Uzytkownik "Paula" <p_barrett@spam .net> napisal w wiadomosci
            > > news:1w41c.1008 05$Xp.434076@at tbi_s54...
            > >[color=darkred]
            > >>Is there a way to keep the browser from refreshing the screen during a[/color]
            > >
            > > post back to the same page?
            > >[color=darkred]
            > >>This is annoying when you are viewing something at the bottom of a page an[/color]
            > >
            > > the post refreshes the
            > >[color=darkred]
            > >>screen placing you back at the top.
            > >>
            > >>TIA,
            > >>
            > >>Paula[/color]
            > >
            > >
            > >[/color]
            > How would that be done?
            >
            > Paula[/color]


            I don't know if the problem stil exist, but when you send a form to
            script, the page will be reloaded, also if the script is itself. but
            there is way to load a little java script with onload int he body
            which scrolls the page automatically to the bottom of the page

            Comment

            Working...