PDA

View Full Version : Interact with Embedded Web Objects



ody
08-08-2006, 06:32 PM
Hello !
I've used this code :


nPos = String.ReverseFind(e_URL, "#", true);
if nPos then
strPage = String.Mid(e_URL, nPos + 1, -1);
Page.Jump(strPage);
end


and used #page on my html's to interact with Project pages and that worked fine.
The problem is I cannot navigate back/history (from the page containing the web object) to another project page using a button outside the web object. It keeps refreshing the web object being in the same page.

Mina
08-08-2006, 11:12 PM
I'm not sure if i understand you perfectly, but i think that you need to have a "back" button from the webpage loaded in the webobject itself. If thats it, you could use Javascript

ody
08-09-2006, 02:45 AM
Could you help me with that? Any ideas on what Javascript i could use in the web object?