Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.

Online

  • 16-10-2002 05: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