Plain ASP Include, No SSI

I'm trying to include a plain html file in my asp page, but don't know how to include since SSI is deactivated(?)

View Replies


ADVERTISEMENT

HTML And Plain Text

Is it possible with CDOSYS to send HTML emails with a plain text alternative? If not, I'm going to have to purchase 3rd party mail component (e.g. JMail) which I'm not really keen to do.

View Replies View Related

Plain Text Email

how i have multiple line and link in my plain text cdosys email? below is my coding in html, how do i put it in plain text cdosys?Code:

bodytext = bodytext & "<p>paragraph1</p><p><a href='http://www.google.com'>paragraph2</a><p>"

View Replies View Related

Pulling Plain Text

The site, which is almost finished, is at

http://site234.webhost4life.com/crgmdal7/

If you click most of the links in the gold nav bar, they will take you to various places within the site. But if you select the one called "Loads", it takes you to http://www.crgm06.com/aval.txt, which I have opened into a new window. As you can see, it's a plain text file, and it is on a different domain, which I have no control over. The data in there changes all the time.

Is there a way I can import this into one of the pages I have control over, and parse it out and display it the way I want? I've never worked with importing plain text that's generated on the fly before.

View Replies View Related

ASP Page Treated As Plain HTML

I have a simple ASP page (named iisTest.asp) with these contents (I've embedded spaces in the tags for this post):

< % @ Language = "VBScript" % >
< html >
< body >
Hello
< %=World!% >
< /body >
< /html >

When I load the page into IE 6.0 it only displays "Hello". If I View Source from the browser I get all of the above, which means it's not being processed by asp.dll before getting sent to the browser (otherwise I shouldn't be seeing the ASP lines).

I asked one of my co-workers to try it and it displays "Hello World!" for him. This leads us to believe the problem may lie with IIS on my machine. (I'm using IIS 5.1.) I checked out my IIS and couldn't find anything that would cause this problem.

View Replies View Related

How? Send Same Email As HTML *or* Plain Text

I'm looking for a simple way to do the following:

We have a database that serves-up content to a website. Some of those items
are events, some are news articles. They're stored in the DB as formatted
HTML so ASP just drops them right into a page shell.

Now, we want to send out a newsletter email containing some of those items.
No problem sending as HTML. However, some of the members want just plain
text. Is there some magic method in CDO that can automatically convert HTML
to plain text? Or, is there some existing VBScript code out there that can
do this?

BTW, the environment is IIS 5.x (Windows 2000), Classic ASP, and CDO.

View Replies View Related

HTML Email Can't Be Read As Plain Text??

I'm using the ASPEmail component to send HTML email newsletters:

Mail.Host = "mail.myserver.co.uk"
Mail.From = strFrom
Mail.FromName = strFromName
Mail.AddAddress strTo, strName_In
Mail.Subject = strSubject
Mail.Body = strMessage
Mail.AltBody = "PLAIN TEXT VERSION"
Mail.isHTML = True
Mail.SendToQueue

The emails are coming through fine, though in Outlook the option to 'View as Plain Text' is greyed-out. This should let the user see the plain text version as defined in the code above, but it is inactive.

View Replies View Related

Sending Email Both As Html And Plain Text

Is it possible to send email both as plain text and html in the same email
using asp?,,,if so...how do you do it and what do you need to set up to do
it.

View Replies View Related

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:

View Replies View Related

How To Include

How i can do <!--#include file="filename"--> dynamic with ASP, or any other way

View Replies View Related

#include

If I want to include a file to my webpage that is not placed in the same
folder asd the application, but in another folder on the same disk...

I found out that this is not going to work:
<!--#include virtual="D:/binaer.no/nova/test.asp"-->

Is there any other way to include from another domain account on the same
server?

There is going to be several applications that includes the same file, so
the trix ../../../ will not do it for me...

View Replies View Related

The Include

<%
I am trying to use "set con" in the include file. i used it before with simple text but when I use the connection object it doesn t work. is this possible in asp and what is the problem with the code below:

inc.asp file
VARMSG = "set con = Server.CreateObject("ADODB.connection")"
con.Open ("dsn=project;uid=sa;pwd=sa")
%>

mainpage.asp
<!-- #include file="inc.asp" -->
<%
Response.write
set rsTypes = con.execute("select * from firstmarch order by cat")
%>

View Replies View Related

Include Gif

Can someone advise how can I send an html message that include gif file using cdonts.
the gif cannot link to www, or any specific server location. user must be able to view when they open their email.no as attachment.

View Replies View Related

Asp Include?

I have asp page file0.asp which calls another asp page thru include. I have to set conditions tht....

originally the include should have file1.asp In the displayed file file1.asp user selects a hyperlink, it should take it as request and display the new file2.asp in same file0.asp in place of file1.asp.

so i want to display multiple pages on user request inside file0.asp. But originally when file0.asp loads it should have file1.asp. Code:

View Replies View Related

Include In ASP

how to include an asp file into an other asp file with checking condition first.I can do this easily in PHP, but in ASP, it seem that the content of included file is process before it read the code on page.So when I include a asp page into another asp page, I cannot choose which page will be include base on the condition.

View Replies View Related

If X Then Include Y

make a script for my forums (the header) involving the date and an included page. Quote:

If the month is 9 (September) then include page x
elseif the month is 10 (October) then include page y
else include page z

How do I go about doing that? I know how to do it in php, but I'm looking to do it with asp.

View Replies View Related

Include

I m trying to test an include example using the code below, but the page "aspsrc.asp" cannot be displayed.

--->aspsrc.inc page
<%
var msg = "testing testing"
%>


-->inc.asp page
<!-- include statement not to be placed within ASP delimiters -->
<!-- #include file=".aspsrc.inc" -->

<%
Response.Write( msg );
%>

View Replies View Related

#include

When I first started using Server Side Includes I used the regular file include:

Code:
<!--#include file = "myfile.asp"-->
Then I read where the virtual include is much beter. I figured I would try it out, so on my last project I used all virtual includes:

Code:
<!--#include virtual = "/somedirectory/somefile.asp"-->
It worked fine and I really couldn't tell any differnce. Maybe a little easier to remember where all the file needed to point to. But this was for a New Site so testing it on the server was easy. I didn't have to worry about existing content up there.

I'm now redesigning a site to add in some dynamic stuff and I always test everything on the server it will reside on to be sure everything will work. Typically I create a "v2" directory and run everything from there. Well this really screws me up when using a virtual include, becuase I would have to edit and then rededit all my file paths.

So my question is... What do you use? And why are file includes so bad?

View Replies View Related

Include Within Include

i'm calling an include file from within a <td> tag of an existing include file (i'm calling the adroator component from the head.asp file.

i'm getting the following error

Error Type:
MSWC.Adrotator (0x80004005)
ERROR Cannot load rotation schedule file
/root/includes/adrotator/adrotatorhomepage.asp, line 14

the include file head.asp is located in the includes directory while the ssi its calling is on the adrotator directory. here is the code for the adrotatorhomepage.asp (all relevant files are in the same directory) Code:

View Replies View Related

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.

View Replies View Related

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.

View Replies View Related

Include Below Web Root Dir

Is there a way to INCLUDE a file BELOW the web root directory?

View Replies View Related

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?

View Replies View Related

#Include Files.

Im working on a new site and im not using frames, im using #include files. The isse is you cant put a variable into an include file because includes are loaded befor variables and this means that the include dont work...

what ive done is make an include page with a quirystring passing which page i want to load in, then on the included page it looks at the case and when it = 2 for example. it loads whats in case 2 which in this case is <!--#include file="../XtraNET/Forum.asp"-->

trubble is theres 52 menu items, if the site would always have 52 menu items this would be solved, but you can add new ones.. thusly i need to be able to dynamic the code...


My train of thought is can i store the whole <!--#include file="../XtraNET/LiveChat.asp"--> statement in the database and call it within the code dynamicly, like a document.write or somthing.

View Replies View Related

Include Files

I just started ASP/ASP.NET two days ago. I would like to know the best way to go about using this include file method to contain my connection string stuff. As I understand it, a connection should only last as long as the query action (unlike VB6 with a persistent connection.)
So, what would be the best stuff to put into an include file for my connection stuff so I only have to make one change throughout the ASP/ASP.NET app?
Any other experiences with good things to put in that include file?
Can I also create the connection object in the include file and use it in multiple pages?

View Replies View Related

Include Asp FIles

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

View Replies View Related

Include Statements

I have been avoiding this issue but it keeps popping up and I cannot figure out a solution. Include statements pathed two or more folders deep they break.

This works:
<!--#include file="../includes/mo_security.asp" -->

This does not work:
<!--#include file="../../includes/mo_security.asp" -->

So basically my site files are limited to one folder deep.
Ex: ROOT/parentFolder/files.htm
One I move another level down the includes do not work anymore:
Ex: ROOT/parentFolder/childFolder/files.htm
I am on a Windows IIS server. Is there any solution to this or is it just a limitation of the include statement?

View Replies View Related

How To Include An Old-ASP Within My New-ASPX

I've got and old ASP script that works Ok, but I want now to include it within a new ASPX script I've just created with '.net'.

The process could be: Code:

<%@ Page Language="VB" %>
<%
... aspx code ...

include my old ASP script
%>

I'm newbie in ASP, and would be extremely obliged if anybody could tell me how I must write it. I've tried with:

<!-- #Include File="old-script.asp" -->

but it doesn't work.

View Replies View Related

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?

View Replies View Related

Use Include Files

I've created two separate files that I use as includes to display the header and footer of each page.Everything works fine if the pages that contain the includes remain in the same directory: the root directory. However, I want to use the includes in other places but I can't figure out a good way to solve the problem of the paths that are in the actual include files (path to stylesheet in the header, etc.).
Here is my basic directory structure on the web server (I've used "code" to make it easier to read):
Code:
- root
- include
header.asp
footer.asp
+ images
- misc
contact.asp
index.asp
I want to use the same include files in contact.asp but, obviously, the paths are going to be wrong. I've tried using Server.MapPath in the paths of header.asp and footer.asp so that the includes can be used anywhere in the site but, it is not working.And, I don't want to have the physical path visible in the source code. Is there a function or method I don't know about that can give me a path to the "root"?What have you done if in a similar situation?

View Replies View Related

Include Webpage

how can i include a webpage from another server with ASP? (Without frames)
i tried XMLHTTP, but i loose the stylesheet, images src and relative links
of the included page.

View Replies View Related

Include Dependant

I've only recently begun using asp so i'm not that good, but my problem is this:
The navigation for my site is within an include file. However I have an inlcude navigation file for each section but the only thing that changes from file to file is the name of the section you are in, this seems a bit un-necessary.I.e contact, home, about us etc. Is there a way I can use asp to write the name of the section and so only need one navigation include file?

View Replies View Related

Include / Render

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?

View Replies View Related







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