Hong,

Using Javascript, you can submit a page in one frame from a page in another
frame.

You can have Buttons of type BUTTON (<INPUT TYPE=BUTTON ..>) in frame2 page
for Add, Delete etc.

btnInsert in Frame2 page can have onClick=callInsert().

callInsert()
{
window.parent.Frame1.document.pageName.action="../projName/pageName.Insert_o
nWebEvent(Insert)?Insert";
window.parent.Frame1.document.pageName.submit();
}

That should work.


Aby

> -----Original Message-----
> From: Hong Yu [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, June 04, 1999 3:27 PM
> To:   [EMAIL PROTECTED]
> Subject:      [ND] Frameset and Action Buttons
> 
> Our ND application pages are all html pages and our client want to use
> frameset with frame1 and frame2. Frame 1 has a page with all entry fields
> and frame2 has a page with all Add, Delete, Save action buttons. When
> click
> the button on frame2 will trigger the action on frame1 Add , Delete or
> Save.
> 
> Questions are:  Is this possible? If so what lauguage I should use Java or
> Javascripts?  
> Is anyone has any sample code?
> 
> _________________________________________________________________________
> 
> For help in using, subscribing, and unsubscribing to the discussion
> forums, please go to: http://www.netdynamics.com/support/visitdevfor.html
> 
> For dire need help, email: [EMAIL PROTECTED]
_________________________________________________________________________

For help in using, subscribing, and unsubscribing to the discussion
forums, please go to: http://www.netdynamics.com/support/visitdevfor.html

For dire need help, email: [EMAIL PROTECTED]

Reply via email to