ASP Refresh or Redirect

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Deepali
    New Member
    • Dec 2005
    • 7

    ASP Refresh or Redirect

    Hi all members,
    I have three pages say page1.asp , page2.asp and page3.asp. On page1.asp there is combobox. The items in combobox are taken from database, now i want to add an entry to database and it must be refleted to combobox also. Using keyevent in page1.asp, i called page2.asp which submits the information to page3.asp where the entry is saved. From here( page3.asp) i want to come on page1.asp, refreshing it(Page1.asp) so that combo box will contain the new entry also
  • Niheel
    Recognized Expert Moderator Top Contributor
    • Jul 2005
    • 2432

    #2
    At the end of page3 you probably want to place a redirect to page 1.

    Code:
     
    Page1 = "page1.asp"
    Response.redirect(Page1)
    niheel @ bytes

    Comment

    Working...