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

Online

Options
  • 16-10-2002 5:17pm
    #1
    Registered Users 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 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