Reload A Form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hermoine
    New Member
    • Mar 2007
    • 2

    Reload A Form

    In my project i have a list of students. when i click a students name i am directed to a page where i can change the students details. and when i submit the page the data is updated and i am directed to the first page where i have the list of students. but now i am using
    Code:
    window.open("pagename","framename")
    this directs me to the page i want. but does not update the page. i need to manually refresh the page.

    i have to do all this in the same window(same frame).

    can you suggest a way for me to refresh the page automatically?
  • Akhilesh1505
    New Member
    • Feb 2007
    • 17

    #2
    Originally posted by hermoine
    In my project i have a list of students. when i click a students name i am directed to a page where i can change the students details. and when i submit the page the data is updated and i am directed to the first page where i have the list of students. but now i am using
    Code:
    window.open("pagename","framename")
    this directs me to the page i want. but does not update the page. i need to manually refresh the page.

    i have to do all this in the same window(same frame).

    can you suggest a way for me to refresh the page automatically?

    try this "opener.documen t.form.submit() ;"

    Comment

    • hermoine
      New Member
      • Mar 2007
      • 2

      #3
      The page that directs me does not have any form. Its just used for updating the dtabase.

      Comment

      • Akhilesh1505
        New Member
        • Feb 2007
        • 17

        #4
        Originally posted by hermoine
        The page that directs me does not have any form. Its just used for updating the dtabase.
        This is the parent form name, not the chield form name[pop up]

        Comment

        Working...