Images With Include File
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 Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Include File And Images
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.....
Images In Include Used In Different Directories
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?
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.
Images Not Showing When Include Navbar
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?
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?
Include More Than 1 Include File
I want to be to call my menu from another file onto my page so that i dont have to add it to every page of my website. The problem is when i try to add it using the include method it says that only one include file is allowed on an ASP. The other include file is my connection string so i cant really take that out of the page because then nothing else will work! How can i get the menu page included as well as the connecting string? Have added the code below, i have highlighted the 2 include files that i want to use in blue, i have also left the div tag in for where i currently have the menu which is what i want to take out and have ther include file there instead, if that makes sense. Basically the bit in red i want to be able to remove from all of my pages and add the blue file above the red code in instead, but i dont know how!!!!! Code:
Vbscript Include File In Jscript File
I have an asp page written entirely in jscript with a vbscript used as an include file which one variable on the page must access. When the page runs, I run into jscript complilation errors when it tries to access the include file (since it is written in vbscript), and I can't figure out how to get the two to work together. How do you get both scripting languages to work on the same page?
Include File In Another Included File
At my site I have designed a framework with tabs as below: (tabs_1.asp) +----+ +------+ +-------+ | MC | | Cars | | Boats | + +------------------------- then, into tabs_1.asp I include another page (tabs_1_2.asp) --------+ +-------------- | New | | Used | | Crasched | +-----+ +------+ +----------+ Works fine so far... Here comes the problem... The file tabs_1_2.asp has an included page (data.asp) witch doesnt appear... When I look at the sourcecode from the webbrowser it seems to have been included but nothing is visible. Is it inpossible to make several includes in the way I described?
Include Xml (w/ Xsl) In A Asp File?
I'm wondering if there's any way to include a XML file (with a XSL) in a ASP file? I've tried this <!--#include file="publications.xml"--> but the XML-code is included before it is formated according to the XSL and ends up being unformated.
Include File With Asp
how would i get something like this to work... <!-- #include file="<%=Request.GetString("view")%>.txt" --> i know wat i want and all but i can't figure out how to make it work.
Include File
I want to include files, a header and a footer to my asp page. The files i want to include its on another server, i can reach it with a www-url. Can i use the www-url to include the file to asp page?
Include A CGI File
How can I include a .cgi file in an .ASP file? I've tried #include, Server.Transfer, and Server.Execute (yes, I know the last two are only for ASP, but I tried it anyway). If I have to, I guess I'll use ASPHTTP to do an http call to the file but first I wanted to see if there was a more elegant way to do it Is there an efficient way to include the output of a .cgi file in an ASP file?
Include File
Is there any way of having an include file as a string, eg: <!--#include file="<%=strURL%>"--> This doesn't seem to work, I get an error: The include file '<%=strURL%>' was not found Is my syntax wrong or isn't this possible?
Include File
<% If rsResult.fields(3).value = "" Then Response.Write "No File Available</td>" Else %> <!-- #include file="Response.Write rsResult.fields(3).value" --> <% End If %>
Include Iis Or Asp File
I do almost exclusively ASP on IIS, so I'm stupid when it comes to dealing with flat HTML on Linux/Apache.I have a static site on a Linux box where I want to do an include on an ASP file on an IIS box, and can't make it work. I've tried <!--#include virtual="http://where.com/abc.asp"--> and <!--#include virtual="http://where.com/abc.txt"--> The ".txt" extension try was in case it's true what I heard that IIS won't let a remote server execute an ASP in an include file. Also tried <!--#include file=...", even though I know from experience that Apache requires "virtual," not "file." And also tried <!--#exec cgi=...". NOT drawing any errors: the generated output just repeats the "<!--#include..." line instead of outputting results from the ASP file.
Include File
I want to execute another asp file at the end of my asp file.. How will I do that ?
Include File
I use include files a lot in ASP, but I was wondering if these files aren't actually part of ASP at all and you can use them in other web-based files.
Add Include File
how can i add include file that isnt in my directory i need to add a file called: http://mpfile.hollosite.com/pafile/pafiledb.php
Include File
Trying to use a include file in an if statement and it is not working,I have tried it multiple ways and have keep getting errors or blank where it should be. Code: <% IF session("sessionID") = "" THEN Response.write (" <!--#INCLUDE file=""loginHeader.asp""--> ") ELSE Response.write (" <!--#INCLUDE file=""loggedinHeader.asp""--> ") END IF %>
INCLUDE An ASP File
How to include file into an ASP program? I was trying with this command: <!-#include file="INC_file.asp" -> but unfortunately it does not work but isn't any error message.IIS server shows primary site,but without informations from incuded file.How can I make it works?
Include In The Asp File
The current html file has to 2 drop down boxes. Depending on the selection chosen, there is a predetermined html file to load.My new asp file will replace the current html that has the 2 drop down boxes and it has its own set of design and graphics. So depending on the selection chosen, instead of loading the predetermined html file, I need to grap a section of the contents in this predetermined html file and add it to the content section of my asp file dynamic. See, another very customised app. creates this predetermined html file dynamically and I have no access to this. My work around is to get the main content I want from this html and include it in my asp file dynamically.
Include File
I'm trying to include file using <!-- #include file="abc.asp"--> and it works without any problem. but the problem is in if file name is in asp variable how should i write?
Include File
I have a few ASP pages within each ASP pages I have a block of Javascript that is different for each ASP page contained within the Javascript block is 20 lines that is same across the ASP pages. Is there any script I can enter that would include these lines from a text files or another ASP file?
Include File
Why can't I get the following running? <% Dim GetODBCdsn GetODBCdsn = <!--#include virtual="connectionssqlconnection.txt" --> Response.Write(GetODBCdsn) %>
ASP File Include
I have a #Include statement in an Asp page. I want to find the path of the included file at runtime. How can I do that?
Include Asp File
I need to include an asp file from another server. Code: <!--#include file="SicurezzaDip.asp"--> I think that is the normal way to do it. I've also used the code shown below, but it doesn't seem to work..Is it possible to Include asp files from another server ? How can i do it ? Code: <!--#include file="http://81.74.60.30/Asp/SicurezzaDip.asp"--> ..
Include File
I have a menu that I use as an include file. it's a horizontal menu that extends to show sub menus. the table the menu is in has silver background. my problem is that when i use the page as a include file the background color for the menu expands to cover the whole page. is there an issue with the include files that would cause the table color to migrate to all the tables? if any one knows another way i can use this menu as an include file and keep the background color from migrating it would be greatly appreciated.
Include File
I just want to ask a basic question that how can i include a file in asp dynamically i have tried the code but it is not working: <% FileName= "filename.asp" <!--#include file="<%=FileName%>"--> %>
Include File
I used to do a lot with asp and now I'm going to use asp.net technology In asp I had a file functions.asp with all my functions I used on several pages like generating connection to database, generating links on pages and things like that. Than I had <!-- #include file="..includefunctions.asp"--> statement on each asp page, at the top of the page. I would like to know, how is this in asp.net You use the same procedure or is there some other, better way to include functions? I read one book but I didn't found any instructions?
Storing Images In DB Or File Directory
I am working on a book selling website using ASP with an Access DB. Basically i would like to have an image of each book in the DB to be displayed upon request in the website. So I guess what i would really like to know is 1. Can i store .jpg or .gif files in an Access DB? 2. Does it make sense to do this? 3. Would it be better to have some kind of pointer in the DB to a place in the file system where the image is stored? .......
Deleting Record And Images From File
I have a tbl.pictures on my website, several of the columns have refferal links to images. Having read through another link on this site, apparently it's the best way to do it. (Keeping the images in file rather than on/in the database) My problem is that when a photographer deletes a photograph from my database the image files remain on my server. For the moment its ok but long term when they delete the record I would also like the images to removed from my server. Any ideas where I could start to look to do this?
File Name Validation When Uploading Images
I would like to know ho to validate a file name when uploading via asp. I need to upload 2 images and the file names must be the same... 1) browse for 1st image. 2) image path and file name appears in text box i.e. IMAGE1.JPG 3) browse for 2nd image. 4) 2nd image file name MUST match the file name in the text box of 1st image i.e IMAGE1.JPG. Hope this is clear... How can this be done.
Variable In Include File
It is possible to add variable into the include file. <!--#include file="../info/<%=strfoldername%>/notetosomeone.asp"--> strfoldername is from my database. It doesn't work. Anyone knows how to solve this problem. Or has other way to do it.
I Want To Include An ASP File From Another Site
Is there a way I can include an ASP file on somebody elses page without useing Java or an Iframe from another web site? I've tried using #include file but it will only include local files.. is it possible to do this with ASP?
Using A Varrible In A File With Include
The file that I am trying to use is as below: Link_Cat_6.asp <!--#include file="../display_links.asp"--> <%Dim Link_Category_ID%> <%Link_Category_ID = 6%> I am trying to use the varriable Link_Category_ID on the included page display_links.asp in an SQL string. I am getting an error in the SQL string WHERE clause saying that the varrible Link_Category_ID doesnt exist i.e. it says that the clause is incomplete. I can't see why its not accepting the varriable in the file.
Include File In Global.asa
I have written general purpose functions in one of the include file, I want to use the same in the global.asa. Do you know how to use include file in global.asa
ASP 3.0: Doing An Offsite File Include?
I have an ASP file on one server that I want to include in an ASP page on another server. How do I do this? The normal ASP include or 'execute' only works for local files. Is there any Javascript i could use to do this? Or is there an easy way to do it with ASP?
ASP 0126 Include File
I'm using IIS 5.0 Win2K (SP3). IIS sometime reports ASP 0126 "Include file not found" error on several .asp pages. 've checked my ASP coding its alright and works lot of time but some time it generates the above mentioned error.I've searched MSDN, knowledge base articles and found 3 different articles related to it but all of these are fixed in SP3 and I've SP3 already installed.
Include A Tango File
I have a tango file (a .taf file) which I want to include in an asp page. An include directive such as <!--#include file = "header.taf"--> does not work. Any ideas on how to make it work?
Include File Written In ASP
I want to allow my users extensions and things via include files. I need the script to look something like this... <!-- #INCLUDE FILE="<%=grargareg%>" --> but ASP doesn't accept values like this... is there a way around it some how?
One Last Try. Error When Using #include File=
I have perhaps not explained myself clearly, so I'll try it this way. In the code below, where it says "I'd like to include my navigation bar here" is the place I'd like to insert a navigation bar from a page I have called navbar.asp For some reason, when I insert the <! #include file="navbar.asp" --> in that place, I get an error, a long, hairy error. Can you please look at the code below, and tell me how I should write the code so that the include statement will work? Code:
Session Within Include File
i have set session("username") = "BOB" , in the main(main.asp) page. i have another page(welcome.asp) that has an include file(user.asp) that display that session. when i call the welcome.asp the session is blank. The session blank when i display it in user.asp but not in welcome.asp. Why is that? isnt session available to all pages?
Include File Or Database
I'm working on an application that I will make use of "constants". I put contants in quotes becuase they will change periodically (Logo path, css path, psw expiration times etc). From a system admin standpoint does it make sense to put them in a constants file, or put them in a database? My database argument is that they can be modified by the customer via some web forms. My contants include file argument is that they can't be modified as easiliy by a half wit customer, and there is no database overhead.
Using If/else To Decide On An Include File?
Is it possible to code the correct file name of the include file on my document, using the if/else statement? The filename will be dependant upon a variable being passed through into this document called PageID, i.e. if pageID = 4, then filename = includefile4.asp What is the correct syntax for this?
Include File Extensions
I am confused about how to best use an include file for a site. I came across a file that has an extension of .inc, but have also seen .asp and .htm used. The difference between the last two is obvious to me, but why would one use an extension of .inc? Furthermore, is there a way other than using the ../../../ method of pointing to file in path to just indicate its reference from the root web, so no matter where in the site, ie., sub-directories, I put an include file, the links all point to the same places.
Showing An Include File
I would like to have the option to show and include file which has a one line table with a red background and printing to pull info out of a SQL database but only if there is data in the table. Basically it is to show breaking news when it happens before there is an article. The SQL table is called breakingnews and the column is called brknews. If the column brknews has nothing in it, I don't want the table to show up on the page but if there is data in it, I want the colored table and text to show up on the page.
Unable To Include File
I have a file in a top level directory called inc_protect.asp. I'm trying to include that file in a page called tree.asp. The code to include the file is <!--#Include file="inc_protect.asp"--> When I try that line or <!--#Include file="../inc_protect.asp"--> or <!--#Include file="http://mysite/inc_protect.asp"--> The server returns an error saying that the file is not found. Anyone have any suggestions on this? All files are asp script. The tree.asp is in a folder called SupServ directly below inc_protect.asp... Can these not go backwards?
Include File Outside Web Site
Is it possible to have an include file that resides outside of the web site parent folder? For instance, lets say you have several websites under Inetpub/global/websites/ but the include file is in Inetpub/inc/ I get a file not found error trying file/virtual starting with the root and even using C:/Inetpub. Example Inetpub/global/websites/website1/global.asa Inside global.asa is the statement <--Include file="C:/inetpub/inc/functions.inc"-->
|