tgummer
-
Total Posts
:
1
- Scores: 0
-
Reward points
:
0
- Joined: 6/11/2001
- Location:
-
Status: offline
|
Using ASP to change frames
Monday, June 11, 2001 10:48 PM
( permalink)
Im after some help in changing the content of one frame from another frame. For instance I will be querying a database and if a query comes back true, I want another frame's content to change. Is this possible in ASP, VisualBasicScript or HTML????? and if so what is the code to use.
|
|
|
|
iarturo
-
Total Posts
:
4
- Scores: 0
-
Reward points
:
0
- Joined: 2/7/2012
-
Status: offline
|
Re:Using ASP to change frames
Tuesday, February 07, 2012 1:07 PM
( permalink)
Try this ... My application has 3 frames MenuFrame, Main and Top, in the MenuFrame, I have an iFrame called RunAPP from the Main and run the following ... <% If Request.QueryString ("CLOSE") = "on" Then%> <script type="text/javascript"> function redirect () { window.parent.parent.menuFrame.RunAPP.location.replace('../../../TimerAPP.asp?URL=Jounal_EntriesRunAPP.asp&PROJID=<%=Request.QueryString("PROJID")%>&PERIOD=<%=Request.QueryString("PERIOD")%>&REFACC=<%=REFACC%>&REFCASH=<%=REFCASH%>'); } window.onload = redirect (); </ script> <% End If%> With this, the Frame RunApp, I show the user if the call was executed successfully or not ... I hope your work...
|
|
|
|
59cobalt
-
Total Posts
:
981
- Scores: 91
-
Reward points
:
0
- Joined: 7/17/2011
-
Status: offline
|
Re:Using ASP to change frames
Wednesday, February 08, 2012 1:10 AM
( permalink)
I have a hunch that after almost 11 years the problem might have vanished. ;)
|
|
|
|
iarturo
-
Total Posts
:
4
- Scores: 0
-
Reward points
:
0
- Joined: 2/7/2012
-
Status: offline
|
Re:Using ASP to change frames
Wednesday, February 08, 2012 11:33 AM
( permalink)
Well ... better late than never ... jajajaja
|
|
|
|