Click to See Complete Forum and Search --> : open a pdf
handshakeit
05-23-2006, 12:50 AM
Hello All
I have one more question How to open a pdf file in a web page
that is stored in a directory on server
Kevey
05-23-2006, 01:41 AM
<a href="http://www.yoursite.com/yourdirectory/yourfile.pdf">View File</a>
handshakeit
05-23-2006, 02:23 AM
Thanks Kevey !!!!!!!!
Kevey
05-23-2006, 03:38 AM
:)
handshakeit
05-25-2006, 02:44 AM
Hi KEvey
I want to open pdf from a grid view in a new window
how to do it
handshakeit
05-29-2006, 12:31 AM
I have done it using JS.......
I am posting the code
<script language="JavaScript" type="text/javascript">
<!-- hide from JavaScript-challenged browsers
function open_window(url,file) {
popupWin = window.open(url+file)
}
// done hiding --></script>