Ask a Question related to ASP Database, Design and Development.
-
Jacques Koorts #1
running ASP inside VBscript
hi,
is it possible?
i tried this and it does not work:
sub main()
<%
%>
end sub
I want to run ASP in a subroutine if that is possible.
thanks
jacques
Jacques Koorts Guest
-
DragManager issues when running in swf inside a swf
(Flex 1.5, AS 2) My drag and drop code has worked fine for a long time. Today, I took the swf generated by the flex compiler and am loading it... -
Verity won't stay running - constantly running
I have tried several reinstalls, but it always shuts itself down. Verity keeps shutting itself OFF ???? All I see the next day is: Unable to... -
Dynamic temp. datagrid col.gen. -Session access inside a class inside a UserCtrl
Hello Dear Professionals: Based on this document:... -
VBScript to ASP
I have an ASP page, on the Window_OnLoad event I use VbScript to popup an Inputbox to accept a value from the user and put it into a string called... -
Samba running running slow...
I installed RH 9 on a box and Samba ran great: copying files from the NT box to the Linux box and visa versa. Then I tried to recompile Apache... -
Steven Burn #2
Re: running ASP inside VBscript
VBScript IS ASP (in a sense anyway)...... tis what you use to write asp
pages ;o)
--
Regards
Steven Burn
Ur I.T. Mate Group
[url]www.it-mate.co.uk[/url]
Keeping it FREE!
Personal favourites
WebGrid - [url]www.webgrid.co.uk[/url]
Freeware Arena - [url]www.freewarearena.com[/url]
Freeware Home - [url]www.freewarehome.com[/url]
Freeware Outpost -
[url]http://free.hostdepartment.com/f/freewareoutpost/index2.html[/url]
ZeroPlus2 - [url]http://zp2.it-mate.co.uk[/url]
Fort Freeware - [url]http://freeware.quantum.2ya.com/[/url]
Pricelessware - [url]http://www.pricelessware.org[/url]
El-Mambo - [url]http://www.el-mambo.net/[/url]
Practically Nerded - [url]http://mvps.org/PracticallyNerded/[/url]
Bugs, Glitches n stuff - [url]http://mvps.org/inetexplorer/Darnit.htm[/url]
Calendar of Updates - [url]http://www.dozleng.com/updates/index.php?&act=calendar[/url]
Seniority - [url]http://www.seniority.co.uk[/url]
Remembering Dunblane - [url]http://www.dunblane.braveheart.com/[/url]
Echo Echo - [url]http://www.echoecho.com/[/url]
"Jacques Koorts" <jkoorts@myrealbox.com> wrote in message
news:109aq04fob38r42@corp.supernews.com...> hi,
>
> is it possible?
>
> i tried this and it does not work:
>
> sub main()
>
> <%
>
> %>
>
> end sub
>
>
> I want to run ASP in a subroutine if that is possible.
>
> thanks
> jacques
>
>
Steven Burn Guest
-
Chris Barber #3
Re: running ASP inside VBscript
In what context?
ASP code is only executed by a webserver processing an .asp page - it recognises the extension and
passes it to the ASP script parser that then executes the code and passes the resultant document
back for further processing and to be served to the web client.
Chris,
"Jacques Koorts" <jkoorts@myrealbox.com> wrote in message news:109aq04fob38r42@corp.supernews.com...
hi,
is it possible?
i tried this and it does not work:
sub main()
<%
%>
end sub
I want to run ASP in a subroutine if that is possible.
thanks
jacques
Chris Barber Guest
-
Roland Hall #4
Re: running ASP inside VBscript
"Jacques Koorts" wrote in message news:109aq04fob38r42@corp.supernews.com...
: hi,
:
: is it possible?
:
: i tried this and it does not work:
:
: sub main()
:
: <%
:
: %>
:
: end sub
:
:
: I want to run ASP in a subroutine if that is possible.
<%
sub main()
Response.Write("What's up main?")
end sub
main
%>
BTW... this is not database related.
HTH...
--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - [url]http://www.microsoft.com/technet/scriptcenter/[/url]
WSH 5.6 Documentation - [url]http://msdn.microsoft.com/downloads/list/webdev.asp[/url]
MSDN Library - [url]http://msdn.microsoft.com/library/default.asp[/url]
Roland Hall Guest
-
Aaron Bertrand [MVP] #5
Re: running ASP inside VBscript
You can't mix server- and client-side script like that. In addition, this
has absolutely NOTHING to do with databases. Please use more care in
choosing your groups.
--
Aaron Bertrand
SQL Server MVP
[url]http://www.aspfaq.com/[/url]
"Jacques Koorts" <jkoorts@myrealbox.com> wrote in message
news:109aq04fob38r42@corp.supernews.com...> hi,
>
> is it possible?
>
> i tried this and it does not work:
>
> sub main()
>
> <%
>
> %>
>
> end sub
>
>
> I want to run ASP in a subroutine if that is possible.
>
> thanks
> jacques
>
>
Aaron Bertrand [MVP] Guest
-
SpaceGirl #6
Re: running ASP inside VBscript
"Steven Burn" <pvt@noyb.com> wrote in message
news:%23SftZ2IMEHA.936@TK2MSFTNGP11.phx.gbl...Well... no... Vbscript is one language that ASP supports. There are two...> VBScript IS ASP (in a sense anyway)...... tis what you use to write asp
> pages ;o)
>
> --
>
> Regards
>
> Steven Burn
> Ur I.T. Mate Group
> [url]www.it-mate.co.uk[/url]
VBS and JScript. With ASP.NET, you have C#.NET, J++.NET, VB.NET, C++ and C
to play with as well.
SpaceGirl Guest
-
Aaron Bertrand [MVP] #7
Re: running ASP inside VBscript
> Well... no... Vbscript is one language that ASP supports. There are two...
Actually, it is more than two (e.g. perlscript, basically any COM-compliant> VBS and JScript.
language)... but only those two are in mainstream use.
Aaron Bertrand [MVP] Guest



Reply With Quote

