running ASP inside VBscript

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. Dynamic temp. datagrid col.gen. -Session access inside a class inside a UserCtrl
      Hello Dear Professionals: Based on this document:...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default Re: running ASP inside VBscript


    "Steven Burn" <pvt@noyb.com> wrote in message
    news:%23SftZ2IMEHA.936@TK2MSFTNGP11.phx.gbl...
    > 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]
    Well... no... Vbscript is one language that ASP supports. There are two...
    VBS and JScript. With ASP.NET, you have C#.NET, J++.NET, VB.NET, C++ and C
    to play with as well.


    SpaceGirl Guest

  8. #7

    Default Re: running ASP inside VBscript

    > Well... no... Vbscript is one language that ASP supports. There are two...
    > VBS and JScript.
    Actually, it is more than two (e.g. perlscript, basically any COM-compliant
    language)... but only those two are in mainstream use.


    Aaron Bertrand [MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139