----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: ChiefCoder Message 6 in Discussion Arijit, there is a possibility you can achieve your desired results. Body and frame can only be clubbed on a page when the frame is an IFRAME, but use of IFRAME is strictly NOT recommended because it will be ignored on browsers like Netscape 4.x (Market share 24%). However, if you create a frameset page with two different frames on it, you can easily communicate between frame1 and 2 using simple javascript, I have attached the sample files with this message. <!-- x.htm --> <frameset cols=50%,*> <frame src=y.htm name=one> <frame src=z.htm name=two> </frameset> <!-- y.htm --> <form name=form1> <input name=name> </form> <!-- z.htm --> <input type=button onclick=javascript:alert(parent.one.form1.name.value); value=show> Hope that helps a bit. Sumit View Attachment(s): http://groups.msn.com/bdotnet/_notifications.msnw?type=msg&parent=1&item=3892 ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
