December 21, 200025 yr Here's a weird one: I create an order in my orders.html file and then add a product by linking to a productedit.html file. When I go back to the orders.html, my portal is not displaying the products I just added. BUT if I then get out of the order and find it, using the same orders.html file, it displays the order with the portal no problem. Does this make sense?
December 22, 200025 yr quote: Originally posted by shimoda: Here's a weird one: I create an order in my orders.html file and then add a product by linking to a productedit.html file. When I go back to the orders.html, my portal is not displaying the products I just added. BUT if I then get out of the order and find it, using the same orders.html file, it displays the order with the portal no problem. Does this make sense? This makes perfect sense. When you go back you are not making a request to retrieve the information, you are only displaying the information you had previously requested. When you rerequest the data then you get the correctly refreshed portal, because the information has been pulled from the database again. The web interface is not a live interface to your database, it is a query based system that retrieves the information when you ask, then stores it until you ask again. ------------------ =-=-=-=-=-=-=-=-=-=-=-=-= Kurt Knippel Consultant Database Resources mailto:[email protected] http://www.database-resources.com =-=-=-=-=-=-=-=-=-=-=-=-=
December 22, 200025 yr Author Maybe I wasn't clear - I am not going back by "hitting the back button," but by having a button that is a form that finds the order. But it won't show the portal data. HOWEVER - a text link (<A Href> )works just fine...:
December 22, 200025 yr Author I FIGURED IT OUT! The problem was that I was not specifying a layout! When I did that it works fine!
Create an account or sign in to comment