473,387 Members | 1,512 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,387 software developers and data experts.

#INCLUDE FILE= variable

is it in any way possible to include a file specified by a variable name?

Thanks,
Carolyn
Jul 19 '05 #1
8 8309
Carolyn Speakman wrote:
is it in any way possible to include a file specified by a variable
name?

Not with #include. The only way to dynamically "include" a page is via
Server.Execute(varPageName). You can read about it here:
http://msdn.microsoft.com/library/en...m_seromexe.asp

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #2
Is there a way to use that to call a page/script stored on a client machine,
that the client can specify?

"Bob Barrows [MVP]" wrote:
Carolyn Speakman wrote:
is it in any way possible to include a file specified by a variable
name?

Not with #include. The only way to dynamically "include" a page is via
Server.Execute(varPageName). You can read about it here:
http://msdn.microsoft.com/library/en...m_seromexe.asp

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #3
On Fri, 20 Aug 2004 04:25:02 -0700, "Carolyn Speakman"
<Ca*************@discussions.microsoft.com> wrote:
is it in any way possible to include a file specified by a variable name?


FAQ:

How do I dynamically include files?
http://www.aspfaq.com/show.asp?id=2042

Jeff
Jul 19 '05 #4
No. The page has to be served by a web server.

You'll have to upload the file to the server where it can be executed.

Bob Barrows
Carolyn Speakman wrote:
Is there a way to use that to call a page/script stored on a client
machine, that the client can specify?

"Bob Barrows [MVP]" wrote:
Carolyn Speakman wrote:
is it in any way possible to include a file specified by a variable
name?

Not with #include. The only way to dynamically "include" a page is
via Server.Execute(varPageName). You can read about it here:
http://msdn.microsoft.com/library/en...m_seromexe.asp

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so
I don't check it very often. If you must reply off-line, then remove
the "NO SPAM"


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #5
What exactly is the overall picture ?
Do you want to execute this code server side (some kind of personnalization)
? One for each client ? Is this some client side personnalization ?

Knowing what you are trying to achieve will help to make better
suggestions...

Patrice

--

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> a écrit dans
le message de news:5C**********************************@microsof t.com...
Is there a way to use that to call a page/script stored on a client machine, that the client can specify?

"Bob Barrows [MVP]" wrote:
Carolyn Speakman wrote:
is it in any way possible to include a file specified by a variable
name?

Not with #include. The only way to dynamically "include" a page is via
Server.Execute(varPageName). You can read about it here:
http://msdn.microsoft.com/library/en...m_seromexe.asp

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #6
The idea is to get a listing of all .exe files in a directory on a client
computer and pass the information back to a server to update a database. The
directory is specified by the user via a form on an Extranet.

It could be possible to have a file (script or something) on the client
machine, which could be invoked via a page on the Extranet, but I still don't
know how that would really work if I can't do a #include or server.execute to
a file other than a file on the server.

Carolyn

"Patrice" wrote:
What exactly is the overall picture ?
Do you want to execute this code server side (some kind of personnalization)
? One for each client ? Is this some client side personnalization ?

Knowing what you are trying to achieve will help to make better
suggestions...

Patrice

--

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> a écrit dans
le message de news:5C**********************************@microsof t.com...
Is there a way to use that to call a page/script stored on a client

machine,
that the client can specify?

"Bob Barrows [MVP]" wrote:
Carolyn Speakman wrote:
> is it in any way possible to include a file specified by a variable
> name?
>
Not with #include. The only way to dynamically "include" a page is via
Server.Execute(varPageName). You can read about it here:
http://msdn.microsoft.com/library/en...m_seromexe.asp

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Jul 19 '05 #7
ASP is not the right technology for this... Is this on a private network?
If so, I suggest you look into something like SMS or Altiris or something
along those lines. A Web page should have no rights whatsoever to scan a
client's hard drive and take inventory of it... Imagine if that were
default browser behavior for such a thing to be allowed. What happens when
you go to a site that is looking for C:\MyCreditCardNumbers.txt?

Ray at work

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> wrote in
message news:0F**********************************@microsof t.com...
The idea is to get a listing of all .exe files in a directory on a client
computer and pass the information back to a server to update a database.
The
directory is specified by the user via a form on an Extranet.

It could be possible to have a file (script or something) on the client
machine, which could be invoked via a page on the Extranet, but I still
don't
know how that would really work if I can't do a #include or server.execute
to
a file other than a file on the server.

Carolyn

"Patrice" wrote:
What exactly is the overall picture ?
Do you want to execute this code server side (some kind of
personnalization)
? One for each client ? Is this some client side personnalization ?

Knowing what you are trying to achieve will help to make better
suggestions...

Patrice

--

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> a écrit
dans
le message de news:5C**********************************@microsof t.com...
> Is there a way to use that to call a page/script stored on a client

machine,
> that the client can specify?
>
> "Bob Barrows [MVP]" wrote:
>
> > Carolyn Speakman wrote:
> > > is it in any way possible to include a file specified by a variable
> > > name?
> > >
> > Not with #include. The only way to dynamically "include" a page is
> > via
> > Server.Execute(varPageName). You can read about it here:
> > http://msdn.microsoft.com/library/en...m_seromexe.asp
> >
> > Bob Barrows
> >
> > --
> > Microsoft MVP - ASP/ASP.NET
> > Please reply to the newsgroup. This email account is my spam trap so
> > I
> > don't check it very often. If you must reply off-line, then remove
> > the
> > "NO SPAM"
> >
> >
> >


Jul 19 '05 #8
#include and server.execute are intended to execute server side code.

You could use the HTML "script" tag with the src attribute to point to a
local javaScript file.
IMO it would be better to just have an ASP Page that send the appropriate
script to the browser (so that you don't have to deploy anything to target
machines). In your client side JavaScript code you sould be able to create a
Scripting.FileSystemObject to browse a directory for files.

Note that users will have to accept to run this script or that you'll have
to alter a global security policy as this is obviously not allowed by
default...

Patrice

--

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> a écrit dans
le message de news:0F**********************************@microsof t.com...
The idea is to get a listing of all .exe files in a directory on a client
computer and pass the information back to a server to update a database. The directory is specified by the user via a form on an Extranet.

It could be possible to have a file (script or something) on the client
machine, which could be invoked via a page on the Extranet, but I still don't know how that would really work if I can't do a #include or server.execute to a file other than a file on the server.

Carolyn

"Patrice" wrote:
What exactly is the overall picture ?
Do you want to execute this code server side (some kind of personnalization) ? One for each client ? Is this some client side personnalization ?

Knowing what you are trying to achieve will help to make better
suggestions...

Patrice

--

"Carolyn Speakman" <Ca*************@discussions.microsoft.com> a écrit dans le message de news:5C**********************************@microsof t.com...
Is there a way to use that to call a page/script stored on a client

machine,
that the client can specify?

"Bob Barrows [MVP]" wrote:

> Carolyn Speakman wrote:
> > is it in any way possible to include a file specified by a variable > > name?
> >
> Not with #include. The only way to dynamically "include" a page is via > Server.Execute(varPageName). You can read about it here:
> http://msdn.microsoft.com/library/en...m_seromexe.asp >
> Bob Barrows
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I > don't check it very often. If you must reply off-line, then remove the > "NO SPAM"
>
>
>


Jul 19 '05 #9

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

Similar topics

6
by: JStrummer | last post by:
I have a question regarding paths and the include() statement in PHP. I develop in a Windows environment and will be publishing to a Linux server. I would like to do the following: 1. Setup my...
2
by: Marcus | last post by:
Hello, I am having problems with an include statement. I'm setting a session variable flag and then including a file, and in that include file I have a check at the top to make sure that the...
2
by: chopper | last post by:
Please excuse the long post but I can't think of shorter way of explaining the issue. Please could someone advise on the following: I'm writing preview functionality for a CMS written in ASP....
11
by: wenmang | last post by:
Hi, all: What will happen if header files with the exact same names but with different contents and declared/defined without include guard reside in the include path for the compiler? Are these...
3
by: Mike | last post by:
I'm new to PHP - moving over from ASP. I have a number of include files, the first of which sets the value of a variable $loginmsg. I use that variable in a subsequent include file, but get a...
6
by: atv | last post by:
Alright, i have some questions concerning include files en global variables.I hope someone is willing to answer these. 1).Why is it that if i define a global variable in a file, say main.c, and...
6
by: tshad | last post by:
In my User control, I tried to do this: *************************************************************************** <Script runat="server"> Public ClientName As String = "<!-- #include file =...
4
by: spectre | last post by:
Hello, I first create a session variable 'client' in the login.asp file The login.asp file opens a file (xxx.asp) with an include file .. If I write <!--#include file="../../../data/" &...
6
by: j.woodcock | last post by:
is there a way of having a file that's name is a variable (eg dependant on the user name) act like a include. i know that you cant define the file for an include asp tag using a variable and that...
4
by: rocketeer | last post by:
I've a set of Javascript classes that maintain state. For example, gm.js might be: var GroupManager { groups: {} }; Over time I add new groups to the list: GroupManager.groups = myGroup; ...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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.