Open a URL in Frame

Hello,

I have form which has a list of dialog list fields. User will make a selecion of field value and upon selection, appropriate URL opens up. This form is in a Frame. There are 3 frame in a frameset. Frame1 on Top. Frame2 on Left and Frame3 on right. I want to display the URL within the Frame1 from where user makes a selection. In other words open the URL within the same Frame1. If I open a URL in Frame2 it works, but it does not opens up in Frame1.

I am calling JS function “onChange” event.

.

.

window.open(“/dbname/(lookup)/” + text+“?OpenDocument”,“targetFrame”)

text = is the slected index

tragetframe where I want to open a page.

Any suggestions,

Thanks in advance

MS

Subject: Open a URL in Frame

Try this

Link := “http://your database address” + “/YourFramesetName?OpenFrameset&Frame=Frame1&Src=” + URL to document.

Subject: RE: Open a URL in Frame

I appericiate your response. I tried but, I am getting an error in following code, can you please guide me.

Window.Open(“http://IPAddress/db1.nsf/FramesetName?OpenFrameset&Frame=FrameName &Src=” +“/db2.nsf/(LookUp)/” + currenttext+“?OpenDocument” )

Thanks

MS

Subject: RE: Open a URL in Frame

Make sure there no spaces in the URL. try using the address first in the normal address bar.

Subject: RE: Open a URL in Frame

Thanks Jean, I tried opening from a ADDRESS bar it worked, and from the application also it worked, I appericiate your reply.

But it opens up as a seperate window.

Any suggestions?

MS