Exporting To Word Using ASP - Need Linked Images To Be Embedded

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


ADVERTISEMENT

ASP, CDO For Windows 2000 & Embedded / In-line Images Showing As Attachments

I have been using the CDONTS.Newmail object for a number of years to send
nicely formatted HTML Emails with inline images.

I am now trying to switch over to using CDO and I cannot reproduce this
functionality. I am using the AddAttachment method instead of the old
AttachURL method but the attached images just show as separately attached
files rather than in line in the HTML.

According to MSDN:

"If you populate the HTMLBody property before calling the AddAttachment
method, any inline images are displayed as part of the message."

Well, I am doing that but it is not working. The images show up as if I had
attached them using the old AttachFile method.

Code follows....

View Replies View Related

Resizing Linked Images

I've been tasked with the challenge of re-sizing images linked via BBcode on the fly. I have compiled a list of functions that do individual components of this task, but stringing them together has proved, well, a challenge.

I discovered this code that will re-size the images, however this will need to be added on an ad-hoc basis, and the fact that the image name appears twice complicates the usual system I used to add the code.

Usual way of replacing the code (inside a function):

Code:

vText = Replace(vText,"[ img ]","<div align='center'><img align='middle' src='")
vText = Replace(vText,"[/ img ]","'></div>")

Image resize code:

View Replies View Related

Images Won't Show Linked From Access DB

I am unable to show and image or flash i have in an access database that is linked to an images subfolder, below is what i am using to show text on my ASP page but i want to ad a couple of images to the database to show in different locations on the page or pages, so i guess i needed a call function but ive used the one i have on my database image rotator scipt and a few others i have dowloaded and still the call scripts wont work, i'm sure im doing alot wrong can someone please edit this code and show me what to do... if its no bother

This works fine for showing the text on a page:

<%
Dim rs
Set rs = Server.CreateObject ("ADODB.Recordset")

rs.Open "introtext", "DSN=introTXT.mdb"

While Not rs.EOF
Response.Write "<br>" & rs("Content") & "<br>"
Response.Write "" & rs("URL") & ""
rs.MoveNext
Wend

rs.Close
Set rs = Nothing
%>

View Replies View Related

Exporting Data To A Word Document Or PDF

We have a variety of work related forms (overtime sheets etc) that people currently download via our intranet.

What I'd like to do is have a page with a drop down box getting staff names and then tick box's as to which documents you want and it will put the employees name and number on the form and print etc ....

The bit I'm a bit a bit lost on is how would I export my employee name and number from a form to a an area on a word document.

I've exported data to an excell spreadsheet before but never a word document.

View Replies View Related

Exporting Data Into A MS Word Serial Letter Via ASP

I have a asp page with a database connection where I need to export adresses
into a MS Word Serial Letter. Is this possible and if how??

View Replies View Related

Insert Images In Word

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

MS Word Include Images

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

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 View Related

Name Of Arabic Font Which Can Be Embedded

my problem is that i want to convert my web pages into Arabic. and for
this I have already install Arabic font in my pc but the problem is that
once i select that specific Arabic font the text is still written in
English . Can u please suggest me some embedded Arabic fonts which are
when selected will write Arabic rather than English.

View Replies View Related

Cdonts Embedded Image

My readers that are lotus note user receive the mails I send using cdonts with image displayed as attachement in place of inline.

I read http://www-1.ibm.com/support/docvie...uid=swg27002572
that say "for displaying image inline in lotus you must set correct
mime header as content disposition : inline"

however I can't achieve it with cdonts : my mime header is stuck to
"content disposition : attachemnt" and I can't see how to change it.

I read somewhere that using attachurl instead of attachfile will fix
it but my test did not achieve this way.Any of you experienced sending inline image to lotus note users with cdonts ?

View Replies View Related

Embedded Code Within JavaScript

I have a checkbox in a form and i want it to create a session if clicked. If it is not checked the session is deleted. I have tried the code below but it always creates the session even if the check box isnt clicked.

<input type="checkbox" id="txtValidate" onClick="<%session("checked")= "true"%>" />

View Replies View Related

Logon Field Embedded In Web Page

I have a logon field including user name and password, which is stored to an access DB. Many websites have a logon and password field integrated into the page. I want the field to always be there.

When successfully logged on, the user will have access to other pages that I designate.

I have a complete web page and I want to stick the code from the working logon field, etc in the page w/o redesigning it around the existing logon.asp page.

I am asking if this is something I can do with the skills that I currently possess? Remember, I'm a novice .asp programmer, but an experienced web designed. We're working on the "dynamic" in web page design.

View Replies View Related

JavaScript Where It Runs When Embedded In Asp Page

I want to know when we embed javascript or vbscript in asp pages where the script runs whether on client's browser or web server? also is there any possibilities like in asp.net we have "runat" wherein we can specify sever or client option available when we are programing in asp.

View Replies View Related

Embedded Flash Movie Controls

I have embedded a flash movie (.swf) in my web page - but I don't know how to put the "play,pause,stop,volume" controls to the video.I need the movie to share with my colleagues at work using our local web server.

View Replies View Related

Send Html With Embedded Image Email In Asp

I want to send email in html format with containing more images added dynamically using cdo.message method. can you pls explain any body one how to do this. i alredy done this, but it send only one picture with that email. here i posted my code also. pls any one tell me what is the problem in this code.

theSchema="http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig = server.CreateObject("CDO.Configuration")
cdoConfig.Fields.Item(theSchema & "sendusing")= 2
cdoConfig.Fields.Item(theSchema & "smtpserver")= "smtp server"
cdoConfig.Fields.Update

Set mail = Server.CreateObject("CDO.Message")

html = "<html>"
html = html & "<head>"
html = html & "<meta http-equiv=""Content-Type"""
html = html & "content=""text/html; charset=iso-8859-1"">"
html = html & "</head>"
html = html & "<body>"
html = html & "<p><font face=""Arial"" ><b>Name: " & name & "</b></font></p>"
html = html & "<p><font face=""Arial""><b>Company Name: " & cname & "</b></font></p>"
html = html & "<p><font face=""Arial""><b>Country: " & ctry & "</b></font></p>"
html = html & "<p><font face=""Arial""><b>E-mail: " & email & "</b></font></p>"
html = html & "<p><font face=""Arial""><b>Details: " & remarks & "</b></font></p>"
html = html & "<p>&nbsp;</p>"

for i = 0 to ubound(iid)
html = html & "<img border=""0"" src=""" & "http://www.abcd.com/img/" & fnme(i) & """></td>"
next

html = html & "</body>"
html = html & "</html>"

mail.From= emailFrom
mail.Configuration=cdoConfig
mail.To = emailTo
mail.Subject = emailSubject
mail.HTMLBody = html
mail.Send
set mail = nothing
set cdoConfig = nothing

View Replies View Related

Searching Access Databases And Their Embedded Documents.

I've had a look and found a few items on searching a database but I need something a bit more complicated.

I want to store documents in a database, I also want to have a web page view and pdf download of the documents available (easy enough if I just embed the URL of the locations). The problem is I want to also be able to provide a search page that allows the user to search the documents and the database (for authors, date etc) using the same page.

So the question is what's the best way to start with the database and pdf docs and end up with a web view and search engine for it. The database is Access btw.

View Replies View Related

Linked Tables

I have a database that has 2 tables linked into it from another database. I am having problems trying to pull in values from those 2 linked databases. One of the tables is tblClient. Code:

View Replies View Related

Linked Tables

Ithe goalposts have been moved (yet again!) and the database that was one, may have to become many, being used on subdomains of the same server sharing some information but not all from a 'global' database.The solution I initially found was to used linked tables and developing it on pws - this was perfect. I linked local databases to the external table data in the 'global' database hey presto the application ran smoothly. There was only 1 connection to each local database and I could retrieve all the information I needed from the global one. However on uploading I have no idea how to set this via asp or sql as online the path of the linked tables is what was on my local machine and I have found no way of being able to edit this or indeed know if this is possible.

View Replies View Related

Linked Combobox

I am using one combo box and populating it with the values . i have another combo box on the page. I want to display the related values in this second combo box based on the selection in the first combo box.

I am trying to reload this page on the change event of the combo box but the values are not coming in the 2nd combo box . Please send me a solution to this or if possible a sample code for the same.

View Replies View Related

Linked Tables?

im trying to link to a Access db which uses linked tables via a odbc connection... is there anything different about the connection string / driver?

adoConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("Resources/peterjohntest.mdb")

but this error comes up Code:

View Replies View Related

Show If Linked With Sessions In ASP

I have a "booking" section on my intranet.

2 questions.

1. Can I, say by session, determine if a user logged in can amend/delete data they have entered? But no one else.
Say they book a conference room, but only they can delete it

2. I want to prevent cross bookings (in terms) of time.

View Replies View Related

Opening Linked Tables

I have an Access DB that has a linked table to a SQL Anywhere DB. When I try to access this Access DB, it prompts me the first time every time for username and password to the SQLA DB. This isn't a problem when it is just me that is working on development, however,

I figured MS would have something good to say about this issue, so that my users can use this DB as well. MS says I need to pre-open the table using the same credentials for both DB's. I have tried this several ways, and am still unable to open the linked access DB.

The error I get is that the DSN=xsellvehicles (this is the DSN that is used by Access to open the table that resides in SQLA) can't be used because the username or password doesn't work.

View Replies View Related

Three Linked List Boxs

if you have seen an example floating around on the internet of three linked list boxs using asp code and a database connection. I have managed to get it to work for the first 2 list boxs, but I am unable to get it to populate the third list box, this is how it is:-

Tables:-
Main_cat
Sub_cat
Subsub_cat.


Not all Sub_cats will have subsub_cats, hope this makes sense. I have attached the code.

View Replies View Related

Linked Drop Downs

how can i change the options of a combo box when selecting an option of another combo box?

View Replies View Related

Linked Form Menus

I currently have a page with car manufacturers in a dynamic form menu. Users can select one and click submit to find available cars by that manufacturer. What i now need is a second menu on the page where when a manufacturer is selected, the models associated with that manufacturer display for a user to choose. For example if Ford is selected:

Menu One Menu Two
------------------ -----------------
Ford Focus
Fiesta
Ka....

Can i do this with ASP to say "if menu one is ford, menu two contains...."? Or is there a much easier way which i am somehow missing?

View Replies View Related

Dynamic Triple Linked Dropdowns

Code:

' then set up a query
' -----------------------------------------------
sQuery = "SELECT DISTINCT * from tablename Order By columnA, columnB " ' << insert your own sql here

could someone give an example so I could follow it?

View Replies View Related

Dynamically Linked List Boxes

I want to link 2 list boxes on the same page without reloading it. The list boxes are dynamic and when one selects an item in the first one, the second one get's populated accordingly. So far I've been stuck with Javascript Object Expected Error and I cant find a way to make it work. Code:

View Replies View Related

Drop Down List With Linked Fields

I want to create an asp page from these forms in my database:

Database:
Table 1 =>
1.1) ID:
1.2) Product Name
1.3) Description

Table 2 => For the ASP Form
2.1) ID:
2.2) Text field 1 (Normal input field)
2.3) Product (Dropdown Menu, Data Source Table 1, Field 1.2)
2.4) Description (Text Field, Data Source Table 1, Field 1.3)

The Description value should be in correlation with the Dropdown Menu value in Table 1

View Replies View Related

Two Linked Dynamic Drop Downs

I want to make a form where m using two drop down menus.

Where in based on selection in first drop down the second drop down should populate itself with relevant data based on first drop down. Like first can be COUNTRY name and second can be STATE name where based oon country selected the STATES are displayed in second drop down for selection.

View Replies View Related

Form With Linked Drop-down Lists

I have an ASP-page where I want to be able to select a fabric and color of that fabric. Since different fabrics comes with different colors I want to have a form with two drop-down lists where selection of fabric in the first list populates the second list with the right set of colors. I need to have the lists in the same form so it only require one submit.

View Replies View Related

Restrict Linked Image Width

I'm creating a forum based site with basic BBCode features, but am concerned that misuse of the [ img ] tag will mess up my layout. I do not want to go down to road of users uploading images, but want to allow them to embed images from flickr, photobucket etc.

So, is it possible to restrict all linked images that are say, over 400 pixels wide? I've been racking my brains and have had trouble coming up with any solutions. Is it possible?

View Replies View Related

Reading Linked Server Stored Procedure

I've got a stored procedure which returns a select query on a linked server. This works fine if i call within SQL and Query Analyser but if i try and execue to return data to a ASP recordset i get the ridiculous

Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC SQL Server Driver][SQL Server]OLE DB error trace [OLE/DB Provider 'MSDASQL' IDBInitialize::Initialize returned 0x80004005: The provider did not give any information about the error.].

Am i missing something really basic like a simple setting or is it just not possible.

Heres my ASP code: ...

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved