Forum Moderators: open
basically, i am trying to open a PDF by using javscript within a window.
My javascript is like:
<!-- Get the file locaiton in PC. I am using -->
<!-- <INPUT type=FILE name=filename>, -->
<!-- so i dont have to take care of the file -->
<!-- name format -->
theURL=document.theForm.filename.value;
<!-- open the PDF file within a NEW window-->
window.open(theURL,"ViewPDF");
It used to work, but after upgrade to IE 6 SP1,
everything just failed ..:-(
rgd.