Transfer .asp Page To MS Word Include Images Within <IMG> Tag
I am using:
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition",
"attachment;filename=Letter.doc"
to download my asp page to the client. The download process works great but when I open the .doc file it is missing the image included within the html <img> tag of the .asp page. How do I get the image to come down with the text?
View Replies
ADVERTISEMENT
I am posting this question for a second time, as I received no answer
on the first post and am desperate for resolution.
I am using
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition",
"attachment;filename=Letter.do*c"
to download my asp page to the client. The download process works
great but when I open the .doc file it is missing the image included
within the html <img> tag of the .asp page.
How do I get the image to come down with the text?
If someone could help me out it would be greatly appreciated.
here is the image tag <IMG src="LargeLogo.jpeg" align=left>
This image is not embedded in the word document.
View Replies
View Related
I've got an application that I want to redirect to another file while keeping the location of the file hidden. In other words,
WEBROOT.COM/REDIT.ASP?a=14
is going to display the contents of file
WEBROOT.COM/SECURE12954
without the user knowing they are in the /SECURE12954 subdir.
Which is better to protect that privacy the name of the /SECURE12954 subdir?
<%Server.Transfer("/SECURE12954")%>
or
<%Response.Redirect("/SECURE12954")%>
or
<!-- #include file="/SECURE12954" -->
View Replies
View Related
Response.ContentType = "application/msword"
response.AddHeader "content-disposition", "inline; filename="&estno+".doc"
to save the page to word..works ok, BUT, the page has an image, referenced to by
Code:
<img src='C:/Inetpub/wwwroot/Shepwww/images/btlogo2.gif'></img>
which is 'saved' to Word, and can be seen in the word document as long as i open it on the same machine....sending the word.doc file to another machine, which doesn't have the image in the path shown, dosen't show the image. So i gather when saving images to word, it is just the path that is saved , NOT the actual image..Is there any way of saving the page so the saved file can be viewed by somebody else on their machine, with the image embeded?
View Replies
View Related
I have an include file which contains some images. If I use this include in a sub directory, the path is obveously wrong. How can I sort this problem - is it best to just use absolute paths rather than relative?
View Replies
View Related
I would like to know is it poss to show images from the images folder when used within an include file? Folders I have are:
inc
images
The include fie is requested via a Querystring, but images don't show.
I've tried:
../images/img1.jpg
images/img1.jpg
still blank.
View Replies
View Related
Can someone please give me advice or help me ...I don't know why the include file / image doesn’t work. What did I do wrong?
Here is my project:
In the wwwrootmyproject has the includes folder, images folder, and index.asp.
wwwrootmyprojectindex.asp
wwwrootmyprojectimages
wwwrootmyprojectincludesheader.htm
wwwrootmyprojectmathcalculas.asp
I create an header.htm page and save it in the includes folder. Because, I want to use the header.htm page in other places.
The images folder contains all the images in there.
Here is my header.htm page:
<table>
<tr>
<td>
<img src=”images/header.jpg”>
</td>
</tr>
</table>
==
Index.asp page - the include works..the header image shows.
<body>
<!--#Include File="includes/header.htm"-->
</body>
here is a problem, I created a Math folder in the myproject. In the math folder I have a calculas.asp page.
In the calculas.asp, I've included the header.htm page
Here is what I did in the calculas.asp page.....
View Replies
View Related
I have an application in ASP that exports to Word using the Response.ContentType method.
The application references another ASP page through the img tag that uses a Response.BinaryWrite (of an img content type) for its output.
In other words:
App A.ASP contains the code: [...] <%Response.ContentType =
"application/vnd-msword"%> [...] <img src="B.ASP">
Then B.ASP contains the code: [...] <%Response.ContentType = "image/png"%>
[...] <%Response.BinaryWrite BinaryObject%> [...]
When Word opens and the document is saved, it references the images as links. I need to have these images be embedded as the file will need to be emailed outside of the network.
I can go in and manually break the links and save them as embedded files, but this process needs to be automated as users will not know how to do this.
Is there a way to force these images to be embedded instead of referenced as links when the Word doc is intially created?
View Replies
View Related
I have an application that has many different look and feels(?) based on the client.
Currently my site uses frames with top_navbar appearing in the top (which appears based on the stylesheet of the client) The main frame houses the welcome page which is stored in a directory relating to that client) or other pages stored in a generic directory (VC) which holds all pages that are common to all clients. In this directory is an IMAGES directory which strangely holds all client's images together....there are some common ones...thats prob why its done like that.
In order to improve the accessibility of the site, I decided to do an include of the top_navbar, to get rid of frames. This works fine when included in the welcome page as the file paths to the images is correct, but when i do it to from a page that is held in the generic directory (VC) the image path is obviously not now correct.
My question is this...How can i get top_navbar to check where it is before setting the filepath to the images? Is this possible?
View Replies
View Related
I like to know how to write this specifc function on ASP where the user eg: display a set of records on the webpage. Example the data are ID, Name and address.
Lets say i display the data on the webpage and i set the Name as the <a href>. So when i click on the name, it will move to another page with the id of the specific name. Code:
View Replies
View Related
I would like the value of the textfield from text1 from Select_License.asp to be transfered to swname from License_add.asp when i click on the Next button from Select_License.asp ....
View Replies
View Related
I'm trying to add logging to my web application, but I found a strange problem. Whenever I execute a Server.Redirect(Page1.asp) I can use the request.ServerVariables("SCRIPT_NAME") to get the current page name. However, if I use Server.Transfer(Page1.asp), the value of the server variable equals the refering page (In this case default.asp). How do I get the value of the working page regardless of the transfer method.
View Replies
View Related
I would like the value of the textfield from text1 from Select_License.asp to be transfered to swname from License_add.asp when i click on the Next button from Select_License.asp
<html>
<head>
</head>
<body>
<form name="form1" method="post" action="">
<P>
Software: <INPUT name=text1 >
<input type="submit" name="Submit" value="Find">
<%
on error goto 0
If Request.Form("Submit") = "Find" Then
description = Request.Form("text1") .....
View Replies
View Related
I tried using the following statements to transfer to html and asp page but i could not
response.redirect("&results('Url')&")
or
Server.Transfer(results("Url"))
pls tell me how can i transfer to html and asp page that i get its url from database...
View Replies
View Related
I have an asp page that collects data from a database and then displays it in a table on the page. I also want to be able to put this information into excel. I know how to get the page to load up in excel and then display the data using the following command -:
response.contentType = "application/vnd.ms-excel"
however I want it so that there is an Extra button on the page that the user can press to transfer the data accross. Does anyone know how to do this?
View Replies
View Related
I'm currently writing an asp page . There are many variables inside i want
to transfer to another asp pages to use them. They are just normal variables
calculated in this page (not variables received with http query ), therefore i dont
know how to receive and use them in a new asp page.
View Replies
View Related
---------------------------------------------
The Execute method allows you to call another ASP page from inside an ASP page. When the called ASP page completes its tasks, you are then returned to the calling ASP page. The overall effect is very similar to a function or subroutine call. Any text or output from the called ASP page will be displayed on the calling ASP page. The Execute method is a more useful alternative to using server-side includes.
In contrast, the Transfer method allows you to transfer from one ASP page to another without returning to the calling ASP page.
There is one mandatory argument.
---------------------------------------------
Fair enough does what I need it to. However, I've run into a glitch. I understand the point about it being like calling a sub which means anything set within the executed page will be considered local and so anything set within it won't work in the calling page. What I don't understand is why the executed page can't read objects which have been set in the calling page before the execute???
View Replies
View Related
Any idea what is causing this error? 006~ASP
0230~Server.Transfer Error~The call to Server.Transfer
failed while loading the page.
Just read about benefits of Server.Transfer over
Response.Redirect, replaced, and getting the error.
View Replies
View Related
I am trying to get a feature to work on a clients website.
I am building a image library in ASP VB Script and I want the user to be
able to select the amount of images they view on the page.
eg. Images per page 12 - 16 - 32 - 64
So selecting 12 for example would only show 12 records.
I am using the Horizontal Looper extension to display my images in 4
columns.
Have anyone ever done this before or know of how to do it?
View Replies
View Related
I have a document that creates the input of data into a word document. Can someone tell me how to create a code where I can create a page break. I found something like this:
Response.Write("<style='page-break-before: always'>")
But that doesn't work. I think this only works if you are printing from HTML directly into the printer. But the script I have, prints it out of Word
View Replies
View Related
I am trying to launch word from an asp page. I need to pass data picked up from a recordset into a word template and then email the resulting merged word doc to the user.
I keep getting the error:
Microsoft Word (0x800A1772)
Word could not fire the event.
It appears the problem lies with the path. As I am only running this locally on my pc at present the code path I have is:
set MyWord = createobject("Word.Application")
MyWord.Documents.Open "D:sitewebprojsummariesEnvUtil.doc"
This is where the Word Doc is located. Am I missing something?
View Replies
View Related
I have an ASP 3.0 website on which the images are displaying intermittently.
In other words, when I request a page, the image is blank. There is no missing image place marker (rectangle with a red X).
The location where the image should be is just empty.
The code is there to display the image as can be seen when you view source in the browser
And if you later return to the page, or sometimes if you simply refresh it, the image will render properly.
What could be causing this erratic behavior?
I'm not sure whether this is an ASP issue, an HTML issue, a browser issue (the error occures in IE 6.0) or possibly a network issue.
View Replies
View Related
I first noticed this in my own app. Images would show up missing [red X] randomly on IE 6.0.2800.1106 on Windows 2000 server.
I then was able to repro this problem on Microsoft's website!!! The page I used was
http://www.microsoft.com/windows/ie...sp1/default.asp
After pressing [F5] to refresh the page six times, I noticed missing images on the page.
This problem seems to be very reproducible. I coded a sample ASP page which references the same images 10 times on the same page. Loaded in IE. Upon pressing [F5] several times, the images will be identified as missing [red X]. Refresh the page again, it's fine.....etc.
I'm up-todate with all latest MS patches. Has anyone else seen this problem?
View Replies
View Related
I am creating a form with checkboxes that contains in the value property, the ID of the image. The filename of the image displayed above the checkbox along with the image.
On that page, I am storing the "checked" information in a cookie. When the user clicks submit, I need to retrieve the actual image that they selected on the previous page and display it along with the image name which I get from the value property.
Right now the only data being passed is the value in the checkbox input tage which is a text string and not the actual image. How do I retrieve the images my users checks off. I hope this make sense. Sort of like a shopping cart, but I only want to be able to select images and post back the ones selected.
View Replies
View Related
I have a server with a Word document and an Access database on it. I
also have an ASP page running on the server. The Word document
contains a mail merge with the Access database. What I want to do is
open the merged Word document from the ASP page when a button is
clicked.
I have tried several things including some scripting that I
found on the internet. This scripting works, however it opens the
merged document on the server instead of on the user's local machine.
I want the Word document to open on the local machine instead.
View Replies
View Related
Could anyone suggest some ideas or links to convert the ASP.NET page
with images of the page to Microsoft Word using C#.
View Replies
View Related
Does anyone know how to access a WORD document using ASP?
I have a few users that fill in fields in a WORD document
and I need to be able to open that document and read
these fields once the document is uploaded to my web
server.
View Replies
View Related
I have many HTML pages, Access Database and ASP pages.
I have a table called " GlossaryTerms ". In this table i have a list of " Glossarywords " in the column called " Terms ". If the HTML page has any " GlossaryWords " then i have to highlight the word. I have a function to hightlight a word in the page. But i dont know i how i have to get the data from the database and check with the static html page's content. Code:
View Replies
View Related
PHP script is in script.php
Now, there's a page.asp
How can it be possible to include the script.php into page.asp (and make it work) without changing any extensions of files? SSI is supported, but i don't know how to use it.
View Replies
View Related
im trying to make a string and in that string have an include in to include a .asp page is this possible. Code:
myhtml = ""
myhtml = myhtml & "This Should Work "
myhtml = myhtml & " <!--#include file ="TESTR.asp"--> "
View Replies
View Related
I have different database connections that I use for DEV and PROD versions of our web app. I want to put the database connection string in one location so I only have to change it once when we push live.
So I put it in an include file and reference it in all my asp pages as:
<!--#include file="includes/db_conn.inc"-->
But this will not work with the global.asa page. How can I reference an include page from global.asa?
View Replies
View Related
We are storing images into the SQL database with the column type of
"Image" using Access and it is storing all of the images as "OLE
Object". I am trying to spit out the binary data of the Image part of
the OLE Object to an asp .net page so I can view it as a jpeg image.
I have found many tutorials for setting the response.contenttype and
then response.binarywrite the byte[] of binary data, but the problem is
that the binary data isn't just the image, but rather an OLE Object
which is the image plus a bunch of metadata. I need to somehow decode
the OLE Object to extract JUST the jpeg image from it for outputting as
a byte[] array.
View Replies
View Related
I have a table in a plain asp page. At the top I have
Response.Contentype = "application/vnd.ms-word"
When it opens in word, it opens in a funky view. Is there anyway to have it
open in Normal View mode?
View Replies
View Related