This is my first post here! Thanks for having a look!
I have been trying to find a resolution to this for weeks. No such luck yet. I hope someone here can give me an idea of what to do.
I had 2 data access pages, page 1 (the navigation page) is used to choose records to show in Page 2. For example Page 1 has ALL RECORDS so when a user clicks on a record in Page 1, it shows the record in page 2 (which has 1 RECORD showing at a time). the problem is that Page 2's navigation buttons are disabled when the user selects a record from Page 1. Yet they work fine when Page 2 loads on its own.
Here is the code i use in page 1 to update page 2. (synchronize)
Code:
<SCRIPT language=vbscript event=Current(para) for=MSODSC>
<!--
Dim vLocation
Dim vServerfilter
vLocation = "\\server\order details11.htm?serverfilter="
vServerfilter = chr(34) & "ID=" & para.section.htmlcontainer.all.item("ID").value & chr(34)
vLocation = vLocation & vServerfilter
window.top.frames("targetframe3").location = vLocation
-->
</SCRIPT>
Any suggestions here? I would sure appreciate a little help!
Thanks in advance!