473,385 Members | 1,620 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Problem with include files!

Hello,

I am new to ASP and am trying to make some changes to some ASP 3.0 code
I have inherited.

I have a number of ASP pages with VBS as the base language, on each of
these pages I have successfully included a piece of VBS code that
produces output in a table cell by using:

<!--#include file="showAnswers.inc" -->

I have added a new page to the site where the base language is
JavaScript. If I try to use the same include line there it doesn't work
as it correctly detects that the code in the include file is written in
VBScript not JavaScript.

So I tried...

<Script language="VBScript" src="showAnswers.inc" </Script>

The page runs in the browser without error but the code in the include
file isn't included so I don't get the output I expect.

So i try...
<Script language="VBScript" src="showAnswers.inc" RUNAT="server"></Script>

The include now works but the output of the included code appears at the
top of the output, not in the table cell where I want it.

I have no idea how to resolve this. Can anyone help?

Thanks
Jules
Jun 22 '06 #1
14 2310
weird. i have now run into the same problem. some of my includes work, and
some are not.
i moved the same files into a subweb, and they work there.
wondering what's up with that.

"Julesh" <ca**************@hotmail.com> wrote in message
news:Dh*******************@fe3.news.blueyonder.co. uk...
Hello,

I am new to ASP and am trying to make some changes to some ASP 3.0 code I
have inherited.

I have a number of ASP pages with VBS as the base language, on each of
these pages I have successfully included a piece of VBS code that produces
output in a table cell by using:

<!--#include file="showAnswers.inc" -->

I have added a new page to the site where the base language is JavaScript.
If I try to use the same include line there it doesn't work as it
correctly detects that the code in the include file is written in VBScript
not JavaScript.

So I tried...

<Script language="VBScript" src="showAnswers.inc" </Script>

The page runs in the browser without error but the code in the include
file isn't included so I don't get the output I expect.

So i try...
<Script language="VBScript" src="showAnswers.inc" RUNAT="server"></Script>

The include now works but the output of the included code appears at the
top of the output, not in the table cell where I want it.

I have no idea how to resolve this. Can anyone help?

Thanks
Jules

Jun 23 '06 #2
well,

mixing server side javascript and vbscript in the same code is seldom a good
idea

your learning that

best to stick to one or the other I say..

I have fooled around with mixing the two and only got very simple things to
work correctly at best


"Julesh" <ca**************@hotmail.com> wrote in message
news:Dh*******************@fe3.news.blueyonder.co. uk...
Hello,

I am new to ASP and am trying to make some changes to some ASP 3.0 code I
have inherited.

I have a number of ASP pages with VBS as the base language, on each of
these pages I have successfully included a piece of VBS code that produces
output in a table cell by using:

<!--#include file="showAnswers.inc" -->

I have added a new page to the site where the base language is JavaScript.
If I try to use the same include line there it doesn't work as it
correctly detects that the code in the include file is written in VBScript
not JavaScript.

So I tried...

<Script language="VBScript" src="showAnswers.inc" </Script>

The page runs in the browser without error but the code in the include
file isn't included so I don't get the output I expect.

So i try...
<Script language="VBScript" src="showAnswers.inc" RUNAT="server"></Script>

The include now works but the output of the included code appears at the
top of the output, not in the table cell where I want it.

I have no idea how to resolve this. Can anyone help?

Thanks
Jules

Jun 23 '06 #3

"Julesh" <ca**************@hotmail.com> wrote in message
news:Dh*******************@fe3.news.blueyonder.co. uk...
Hello,

I am new to ASP and am trying to make some changes to some ASP 3.0 code
I have inherited.

I have a number of ASP pages with VBS as the base language, on each of
these pages I have successfully included a piece of VBS code that
produces output in a table cell by using:

<!--#include file="showAnswers.inc" -->

A poor design choice on the part of the original development.
I have added a new page to the site where the base language is
JavaScript. If I try to use the same include line there it doesn't work
as it correctly detects that the code in the include file is written in
VBScript not JavaScript.

So I tried...

<Script language="VBScript" src="showAnswers.inc" </Script>

This just tries to run the contents of the include on the client. (Use of
inc extension allows the client to download the file content another poor
choice.)
The page runs in the browser without error but the code in the include
file isn't included so I don't get the output I expect.

So i try...
<Script language="VBScript" src="showAnswers.inc" RUNAT="server"></Script>

I'm suprised this works at all. It normally isn't possible to use an ASP
include as a VBScript source, this include is likely to at least have a
couple of <% %> delimiters which are invalid in VBScript. In order to this
to work these delimiters would need to be removed but then all the other
normal uses of the include would break.

There is another problem with this approach when the specified language
isn't the same as the page language. The content will not be executed in
line but will executed before the rest of the page has been processed.
The include now works but the output of the included code appears at the
top of the output, not in the table cell where I want it.

I have no idea how to resolve this. Can anyone help?

The easiest solution is to stop using JScript as your base language.

If you really must use JScript then the only solution I can see is leave the
page as VBScript and place all your JScript in a:-

<script language="JScript" runat="Server">
..
..
..
</script>

block at the top of your page. Note that this should contain pure Jscript,
no inline HTML, also any code that generates output to the response should
be inside functions. You then call the functions from the pages VBScript
language at the point you need them.

Anthony.


Thanks
Jules

Jun 23 '06 #4
Kyle Peterson wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
mixing server side javascript and vbscript in the same code is seldom
a good idea


I think it is a very viable idea, I use it often.

I use vbs as the main script, and JS only to define certain functions.

Especially small regex test functions are much easier written in JS,
[once you get the hang of it!!!]:

<% 'vbscript main

.......

if NOT testPassword(passw) then ...

%>

<script language='javascript' runat='server'>
// contains at least 1 letter char and 1 number char?
function testPassword(x){
return /\d/.test(x) && /[a-z]/i.test(x)
}
</script>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jun 23 '06 #5
Anthony Jones wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
If you really must use JScript then the only solution I can see is
leave the page as VBScript and place all your JScript in a:-

<script language="JScript" runat="Server">
.
.
.
</script>

block at the top of your page.
The position in the file [not "page"] does not matter,
since in a vbs-asp file the JS-runats are executed first anyway.
Note that this should contain pure Jscript,
no inline HTML, also any code that generates output to the response
should be inside functions.


A easy advice, since _inline_ html IN a runat='..' is not possible anyway.

response.write('Hello world'); is possible, but it seems better to stick to
function definitions.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jun 23 '06 #6

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Kyle Peterson wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
mixing server side javascript and vbscript in the same code is seldom
a good idea

I think it is a very viable idea, I use it often.

I use vbs as the main script, and JS only to define certain functions.

Especially small regex test functions are much easier written in JS,
[once you get the hang of it!!!]:


That's interesting point of view. I'm not sure I'd want to ask ASP to run
JScript as well as VBScript for sake of a few lines of code. Also the
JScript implementation of RegExp gets annoying when you want to run a global
match with submatches.
<% 'vbscript main

......

if NOT testPassword(passw) then ...

%>

<script language='javascript' runat='server'>
// contains at least 1 letter char and 1 number char?
function testPassword(x){
return /\d/.test(x) && /[a-z]/i.test(x)
}
</script>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jun 23 '06 #7

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Anthony Jones wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
If you really must use JScript then the only solution I can see is
leave the page as VBScript and place all your JScript in a:-

<script language="JScript" runat="Server">
.
.
.
</script>

block at the top of your page.
The position in the file [not "page"]


Has anyone ever pointed out to you how painfully pedantic you are
does not matter,
since in a vbs-asp file the JS-runats are executed first anyway.

True but since it does get executed first you may as well put it first just
to be clear.
Note that this should contain pure Jscript,
no inline HTML, also any code that generates output to the response
should be inside functions.


A easy advice, since _inline_ html IN a runat='..' is not possible anyway.


Which is why I said don't do it.

response.write('Hello world'); is possible, but it seems better to stick to function definitions.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jun 23 '06 #8
Anthony Jones wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
> If you really must use JScript then the only solution I can see is
> leave the page as VBScript and place all your JScript in a:-
>
> <script language="JScript" runat="Server">
> </script>
>
> block at the top of your page.
The position in the file [not "page"]
Has anyone ever pointed out to you how painfully pedantic you are


Why do you snear when you are corrected? Bad day, Anthony?

Many mistakes are a result of the misconseption, that ASP-"pages" exist.
does not matter,
since in a vbs-asp file the JS-runats are executed first anyway.

True but since it does get executed first you may as well put it first
just to be clear.


As well? I don't think so, I like to have my simple function definitions
at the bottom out of the way, as I treat them as reusable black boxes.

It is a personal preference, which I would advocate as useful.
> Note that this should contain pure Jscript,
> no inline HTML, also any code that generates output to the response
> should be inside functions.


A easy advice, since _inline_ html IN a runat='..' is not possible
anyway.


Which is why I said don't do it.


Isn't advising not to do what is impossible to do anyway a bit strange?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jun 23 '06 #9

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Anthony Jones wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
> If you really must use JScript then the only solution I can see is
> leave the page as VBScript and place all your JScript in a:-
>
> <script language="JScript" runat="Server">
> </script>
>
> block at the top of your page. The position in the file [not "page"]
Has anyone ever pointed out to you how painfully pedantic you are


Why do you snear when you are corrected? Bad day, Anthony?


Yeah I kinda snapped seeing yet another 'correction' from of something which
really doesn't need correcting.
Many mistakes are a result of the misconseption, that ASP-"pages" exist.
Such as?
does not matter,
since in a vbs-asp file the JS-runats are executed first anyway.
True but since it does get executed first you may as well put it first
just to be clear.
As well? I don't think so, I like to have my simple function definitions
at the bottom out of the way, as I treat them as reusable black boxes.

It is a personal preference, which I would advocate as useful.


Fair enough.
> Note that this should contain pure Jscript,
> no inline HTML, also any code that generates output to the response
> should be inside functions.

A easy advice, since _inline_ html IN a runat='..' is not possible
anyway.


Which is why I said don't do it.


Isn't advising not to do what is impossible to do anyway a bit strange?


Not when the original poster is clearly not sure what is and isn't
impossible.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jun 23 '06 #10
Well, didn't mean to start a mini post war guys.
I guess my personal preference is that I don't find it useful and I guess I
am not a perfy enough programmer to really give a crap either way...

It's friday and I am going to the bar to see how much beer I can drink!

"Anthony Jones" <An*@yadayadayada.com> wrote in message
news:%2******************@TK2MSFTNGP03.phx.gbl...

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Anthony Jones wrote on 23 jun 2006 in
microsoft.public.inetserver.asp.general:
>> > If you really must use JScript then the only solution I can see is
>> > leave the page as VBScript and place all your JScript in a:-
>> >
>> > <script language="JScript" runat="Server">
>> > </script>
>> >
>> > block at the top of your page.

>> The position in the file [not "page"]
>
> Has anyone ever pointed out to you how painfully pedantic you are


Why do you snear when you are corrected? Bad day, Anthony?


Yeah I kinda snapped seeing yet another 'correction' from of something
which
really doesn't need correcting.
Many mistakes are a result of the misconseption, that ASP-"pages" exist.


Such as?
>> does not matter,
>> since in a vbs-asp file the JS-runats are executed first anyway.

> True but since it does get executed first you may as well put it first
> just to be clear.


As well? I don't think so, I like to have my simple function definitions
at the bottom out of the way, as I treat them as reusable black boxes.

It is a personal preference, which I would advocate as useful.


Fair enough.
>> > Note that this should contain pure Jscript,
>> > no inline HTML, also any code that generates output to the response
>> > should be inside functions.
>>
>> A easy advice, since _inline_ html IN a runat='..' is not possible
>> anyway.
>
> Which is why I said don't do it.


Isn't advising not to do what is impossible to do anyway a bit strange?


Not when the original poster is clearly not sure what is and isn't
impossible.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Jun 23 '06 #11
The include directive doesn't care about the language. IMO it would be
rather that you have to put inside your include file a runat="server" script
tag that explicitely tells that you are using VBScript... (my understanding
is that "it doesn't work as it correctly detects" means it's not running
fine as the VB Script is thought to be JavaScript code).

--
Patrice

"Julesh" <ca**************@hotmail.com> a écrit dans le message de news:
Dh*******************@fe3.news.blueyonder.co.uk...
Hello,

I am new to ASP and am trying to make some changes to some ASP 3.0 code I
have inherited.

I have a number of ASP pages with VBS as the base language, on each of
these pages I have successfully included a piece of VBS code that produces
output in a table cell by using:

<!--#include file="showAnswers.inc" -->

I have added a new page to the site where the base language is JavaScript.
If I try to use the same include line there it doesn't work as it
correctly detects that the code in the include file is written in VBScript
not JavaScript.

So I tried...

<Script language="VBScript" src="showAnswers.inc" </Script>

The page runs in the browser without error but the code in the include
file isn't included so I don't get the output I expect.

So i try...
<Script language="VBScript" src="showAnswers.inc" RUNAT="server"></Script>

The include now works but the output of the included code appears at the
top of the output, not in the table cell where I want it.

I have no idea how to resolve this. Can anyone help?

Thanks
Jules

Jun 23 '06 #12
Anthony Jones wrote:
The position in the file [not "page"]

Has anyone ever pointed out to you how painfully pedantic you are


They have, but that does not mean his pedantry is unwelcome. In this case,
the distinction between "file" (personally, I would have said "script") and
"page" is the very essence of the issue. The <script runat="server"> tag
will *never* appear in the output, or page.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Jun 23 '06 #13

"Dave Anderson" <NY**********@spammotel.com> wrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Anthony Jones wrote:
The position in the file [not "page"] Has anyone ever pointed out to you how painfully pedantic you are


They have, but that does not mean his pedantry is unwelcome. In this case,
the distinction between "file" (personally, I would have said "script")

and "page" is the very essence of the issue.
The only entity I can see that I refered to as a 'page' is the ASP 'file'.
Honestly why is that a problem?
The <script runat="server"> tag
will *never* appear in the output, or page.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use of this email address implies consent to these terms.

Jun 23 '06 #14

Anthony Jones wrote:
"Dave Anderson" <NY**********@spammotel.com> wrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Anthony Jones wrote:
> The position in the file [not "page"]
Has anyone ever pointed out to you how painfully pedantic you are


They have, but that does not mean his pedantry is unwelcome. In this case,
the distinction between "file" (personally, I would have said "script")

and
"page" is the very essence of the issue.


The only entity I can see that I refered to as a 'page' is the ASP 'file'.
Honestly why is that a problem?


I don't understand the importance of the differentiation either. It
seems to me that "asp file" and "asp page" are used interchangeably to
mean the same thing, even by Microsoft:
http://www.microsoft.com/windows2000...p/iiwauslw.htm
but I would be interested to know why this is an issue.

--
Mike Brind

Jun 23 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Bartosz Wegrzyn | last post by:
I need help with sessions. I createt set of web site for nav with authorization. first I go into main.php which looks like this: <?php //common functions include_once '../login/common.php';...
7
by: Forecast | last post by:
I run the following code in UNIX compiled by g++ 3.3.2 successfully. : // proj2.cc: returns a dynamic vector and prints out at main~~ : // : #include <iostream> : #include <vector> : : using...
15
by: Ken Allen | last post by:
I have been developing a suite of assemblies over the past couple of weeks, and this afternoon somethign started misbehaving. If I do not run the IDE and compiler the code from the command line,...
13
by: kamaraj80 | last post by:
Hi I am using the std:: map as following. typedef struct _SeatRowCols { long nSeatRow; unsigned char ucSeatLetter; }SeatRowCols; typedef struct _NetData
9
by: chat | last post by:
Hi, every body. I have 3 files like this: -------------------------------------------------------- file name : header.h #ifndef TEST_H #define TEST_H int a=1; double b=0.5;
9
by: Prasad | last post by:
HI, I am a beginner in VC++.. I am trying to write a Win32 console application in visual studio.. I am using following header files.. #include <STRING> using namespace std; #include...
1
by: Arsalan Ahmad | last post by:
Hi all, I am trying to compile some source files using makefile. While compiling I am getting errors as shown below. Any idea how can I solve this problem. I believe I need to add some...
8
by: supasnail | last post by:
I have a happily working set of asp pages which read from the database via include file "./_private/include/database.mdb". However, when I try to gain access to this database on pages one folder...
0
by: james.mcdonagh | last post by:
Hi I am a newbie using nAnt for .net 2.0. As such I have not come across this bug before, and I would be happy of any help that you may be able to provide. In order to help I have included the...
2
myusernotyours
by: myusernotyours | last post by:
Hi All, Am working on a Java application in which I have to use the JNI to Interface with some native code for both windows and unix. Am using netbeans IDE with the C/C++ pack installed. Am also...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.