Including A File From Another Site...

Am trying to include a txt file from another site...This is the code I am using:

<table width="540" border="1" cellspacing="1" cellpadding="5" align="center" bordercolor="#DCDCDC" style="BORDER-COLLAPSE: collapse">
<tr class="text" align="center">
        <td width="250">
        Name</td>
        <td width="250">Type</td>
        <td width="40">Info</td>
        </tr>
        
<!--#include virtual="http://www.anothersite.com/MyFile.txt" -->         
</table>

The contents of the txt file are all arranged with appropriate html so am hoping the output will be displayed appropriately on this ASP page.

View Replies


ADVERTISEMENT

Including Another Site

I'm after some coding that will allow me to include another url (website) on my page.
What I basically want to do is keep my header and footer and use the information off their site so that when they update it mine will be too. I have their permission to do this.

What include statement would I use.

I know I can do it with frames but I would perfer to use a simple include statement.

View Replies View Related

Including A File In ASP

I am trying to include a file in an ASP page. But the problem is that the file is in a different folder. When i put the file in the same folder then it works fine. Is there any way to include a file from different folder. For Example I am using a file for database connection and including it in each ASP page as follows--
<!--#include file="Connection.asp"-->
So i have to put this file in each folder of my web application. But i want to keep it only at one place.
I have also done it with ../ and /(root) but both the methods are not working. These methods work properly on localhost but not on the hosted website

View Replies View Related

Including One Vbs File Into Other

how can we include one vbs file into other vbs file?

View Replies View Related

Including .txt File In If-Then Statement

How would I go about including a .txt file in an If-Then statement? Basically what I want is to have a certain file included depending on what the value of Request.QueryString("type") is equal to. Any ideas?

View Replies View Related

Including A None Asp File In A .asp Page ?

I wanna just include a .php in a .asp page,I mean,I use PHP Code:

<?php

include('etn.php');

?>

to include and execute the etn.php in test.php file, but now I need only to include etn.php in .asp file in a linux server. Is there any hint , or coding , or server side codes ?

View Replies View Related

Including A File In Response.write

response.write("<a href=""editprofile.asp"" class=""default"">Edit Profile</a>&nbsp;/&nbsp;<a href=""viewprofile.asp"" class=""default"">View Profile</a>&nbsp;/&nbsp;<a href=""mymessages.asp"" class=""default"">My Messages</a>")
how do i put: <!--#include file="noofmessages.asp" --> at the end of my code in the last link My Messages?

View Replies View Related

Form Including File And Text Fields

i want create a form that include many text boxes and an fiel field for upload a file to server but when i add "enctype="multipart/form-data" in the form tag i cant get the texts . how can i do a form working with file upload and text fields.

View Replies View Related

Download File With A Filename Including National Characters!

I have an asp site which I try to bet unicode compatible (UTF-8
codepage=65001). In the site a user can upload documents and I store the
document on the server in a database. I also store the original filename. If
this filename contains for example swedish characters like å,ä ö which are
outside ascii 0-127 i get problems when I try to download the file from
server-->client.

In my com+ packages (which are instantiated from asp files) I set the
following headers/content types

GetObjectContext("Response").contentType = "application/octet-stream"
GetObjectContext("Response").AddHeader "Content-Disposition", "attachment;
filename=" & rs("orgfilename")

The database value is correct and I have set the codepage in the ASP file to
65001 (UTF-8). The problem is that the filename shown in the "Save as"
dialog is incorrect. If the filename only include a-z the filename are shown
correct.

I tried adding a charset header but it does not work.
GetObjectContext("Response").AddHeader "Charset", "UTF-8"

Browsers used: IE6 sp1.

View Replies View Related

File Via FTP Site

I need to access a file on a remote FTP server. Assuming I have all the FTP login credentials, how can I get that file (.txt file) and copy it to my server (so I can use it for my database). I need to have it on my server before I use it because I am not allowed to do anything with the remote file but copy it. (bandwidth crap, or so they say)

View Replies View Related

File On Another Site

How do i include a file on another site (which is accesale via a virtual directory)the file to be included is set up like this:

http://www.mysite.com/virtualdirect...includethis.asp

ive tried all sorts

View Replies View Related

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?

View Replies View Related

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"-->

View Replies View Related

Saving Site As WORD File

Just a thought...Using

Code:

Response.ContentType = "application/msword"

to save asp pages to MS Word, saves the text on the pages OK, but, pictures, icons etc are just saved as a link to the original picture file . If the picture/image is not on the current PC opening the WORD file, then none is shown..

I was wondering if I could save the asp pages WITH images/pictures & icons using MS WORD on the server and then the users downloading the .doc file from the server to their PC, would this embed the pictures etc in the .doc file, so it could be shown on any PC. (which has WORD or a WORD Viewer installed).

If this is possible could someone point me in the direction as to how to get started opening WORD on the server and saving the .doc file on the server.

View Replies View Related

Implementing A Global Log File For A Web Site

I am trying to implement a single global text file for my web site that will log the actions that my ASP scripts peform. The site I have set up involves about five web pages with scripting in VBscript. Several of these pages also use COM automation to peform certain tasks in Excel macros which also write to the text file.

Currently, I must declare an FSO object on each page. I also have to close the object before I call the COM components (because I write to the log file from the Excel macros, too) and then open it again when control returns to my ASP scripts.

The macros I have written inside Excel are quite intensive, so they chew up some time when they execute. In the end, each user will go through the five web pages to generate an Excel spreadsheet which they can download, and, during this process, will have logged about 15 messages to the text file. Code:

View Replies View Related

Site Search: Reading Text File ERROR

I have to make a site search function for my website. User types a keyword, and the search function searches through all the static pages for the keyword. The result of the search has to display the URL relating to the keyword, which the user can click to read the contents.

I had no idea how to go about doing it, finally I thought of using a textfile containing the word, and its related URL in the format: Code:

View Replies View Related

Including A ".inc" File Versus An ".asp" Or ".htm" File

I have begun having problems with an entire site that has been using an include file called header.inc The file simply has some html for a nav table.

I had had everything under the root web using this, then I created a directory and had a file in that directory use header.inc This is where my problems began.

I went into the inlude file and changed all the paths to read "http://www.somewebsite.com/default.asp", etc. Is this right? When using an include in this context, what extension on the file is important, and what is the proper way to include the file...

View Replies View Related

Building An ASP Site Using Dreamweaver - Can Html Site Be On ASP Server?

I am to build a site onto an ASP server. Anyone here used Dreamweaver and is it just a simple matter of opening up a new ASP page in Dreamweaver and build the site like you would normally do with a HTML page and it will handle the ASP coding accordingly and you can just simply upload it onto an ASP server and it will work?

The site I am to build is basically just a standard html website, but my friend wants me to build it for an ASP server so he has asked me to make sure it is an asp site so I am presuming with the extension .asp

If I build it as a html site to begin with, will converting it to asp be hard. Could I just export my pages into asp or is there more to it?

Can a Html website be loaded and working on an asp server or host?

Is it possible to have a site mixed both html and asp, eg. the home page is html and when you click on shopping cart on the home page it goes to a hopping cart page thats .asp or do they all have to have the same extension.

View Replies View Related

Posting Form Variables From Site A To Site B

I have to pass form data from my site to another organizations site using POST method... how exactly do I do that? Im familiar with how to do it within a single site/domain, and cant use querystring... I dont know where to begin.

View Replies View Related

Site Search Powered By Google Site Map?

Whenever I do a site that is mostly static but with some semi-dynamic
sections, I've struggled to find a good site search solution without
paying for a hosted search service.

I like the FSO-based search engines, but they fail to pick up on some of
the dynamic part.

I was just creating a Google sitemap and it made me wonder: has anyone
created or seen a script that uses the XML Google sitemap to power a
search engine for your own site?

Seems like if you were keeping it updated for Google, why not use it for
your own site?

View Replies View Related

Including HTML Like In PHP

So far I have not been able to import a HTML-page in ASP like I can with PHP. In php you may import a page, and just get the output of the file (not the entire HTML-code, wtih tags like <body> <title and such). Is it possible to do this with ASP?

View Replies View Related

Including A Header

I have the following file structure:

/
header.asp
test.asp
/subDir
testpage.asp
/images

I would like to have header.asp to be usable from all directories. Header.asp will have images and URLs. When I try to #include the file in test.asp, it works fine. However, if I #include it in testpage.asp, the images in header do not work - testpage.asp thinks the images are in subDir, when they are in the images directory. I have tried a variety of combinations of MapPath, Server.Execute, but I have not gotten the image to appear correctly. What is the correct syntax for what I am trying to accomplish?

View Replies View Related

Including A Library

I am trying to use the example located here: http://www.asp101.com/articles/jacob/scriptupload.asp

If I have vbscript v5.0 do i still need to include a library inorder to create a new FileUploader object?

View Replies View Related

Including Asp Codes

I have included all the db scripts in asp above the <head> tag and <html> opener tag.When i submit a page, to add a record that record just get doubled and i dont know why that is happening.It dont happen always but now and then. The problem is not with cliking the submit button twice. So all i want to know is if it may be a problem with including the asp codes above the html tag or not?

View Replies View Related

Including Files

In ASP, is there a way to use a page to mask the identity of another page? So that say I had a page named google.asp, and I wanted to include all of what is actually on google.com, is there a function similar to the the include option that allows you to mimic a page, rather than include a file?

View Replies View Related

Including Files In ASP

I am trying to include several files in an ASP script. I have a common file that does the database handling, and that common file will include common functions and classes used throught the script. Although I've checked each of the files for errors, none seem to have any, but when I call a class included from another file, I get this:

Error Type:
Microsoft VBScript runtime (0x800A01FA)
Class not defined: 'ASPTemplate'
/test/test.asp, line 7

Any ideas?

View Replies View Related

Including A Page From Another Server?

How would I go about displaying a plain text page that is located on a
website that is not my own? For example... my site is www.x.com and
www.y.com has a news article at http://www.y.com/article1.asp and i want to
"include" this file on a page located on my site (www.x.com).

View Replies View Related

Including A Variable Within A Hyperlink

I am having trouble trying to get a line of my script to work. I want to include the variable "name" in a hyperlink. The line of code I am working with is below:

Response.Write ("<a href=""band_news.asp?ID=" & rsCTD("ID") & """> Read more about & rsCTD("name") & </a>")

This code is throwing up errors every since I tried to add the variable for the output of the hyperlink.

View Replies View Related

Including Menu In Certain Directories

I'm including a template on all pages in a site. In the template I have a menu. What I'd like is to have a different menu displayed if I'm in a different directory. Something along the lines of:

If path is /mainsite Then
Regular Menu
If path is /admin Then
Admin Menu

Just not sure about how to go about getting there. My first thought was to use the PATH_INFO server variable, but that returns the page name too. Any suggestions?

View Replies View Related

Including PERL Files Within ASP

Does anyone know if its possible to include perl files in my CGI-BIN folder within an asp page?

I've written a forum program in perl (which is all run through the same file /cgi-bin/forum.pl) and I would like to include it within an ASP page.

Is it possible? If so how? Just using the Include Virtual string? By the way I'm on UNIX with ChilliASP installed.

View Replies View Related

Including Files In An Output

why doesnt including files in an output work? or is there just a different way to do it, the below did nothing at all? Code:

View Replies View Related

Including Login Name In Order

My page to place orders is password protected.What ASP script can I use to have the login name of person placing an order pass to database, something like the date which currently I pass using a hidden field <%=date%>.

View Replies View Related

Including Portions Of A Page

Is there a way to include a part of an ASP file? Like if I want preformatted text, but don't want to have separate include files for the title, subtitle, and body text? Or including specific variables from a separate page?

I know there are various workarounds for something like this, but I figured I'd ask if for nothing more than an insight into the language (I just started with ASP recently).

The reason I ask is that I want the page to be editable later without risking changing the stylesheets. Since the people who will be doing the updates are not web designers, I want to make the process as risk-free as possible.

View Replies View Related







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