Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

Online

  • 16-10-2002 04:17PM
    #1
    Registered Users, Registered Users 2 Posts: 446 ✭✭


    Is there a way of inserting visual basic programs into webpages?
    Do you need to upload it to a certan server etc?
    Is is literally done like...
    <html>
    <body>
    <B>VB</B>
    <Language= VB> ' you know like it does with javascript?
    Sub bla bl
    and the code etc?

    ... does that make any sense?
    Or am I completley off the mark?

    Thanks
    Kate:p


Comments

  • Registered Users, Registered Users 2 Posts: 2,781 ✭✭✭amen


    you can't use VB as such. Use can use vbscript/jscript for the client side using a directive such as
    <script language="javascript"> or
    </script>
    <script language="vbscript">
    </script>

    within these you can write your code
    in vbscript there no types. everything is variant

    you can access the page elements and process event etc

    save your page and away you go


    If on the other hand you want to do some server side processing such as aps then you will to host with a service provider that will support asp pages

    hope this helps
    you could post to webmaster as well

    e


Advertisement