Hi all,

I have the following simple code,

Code:
        <script src="js/chessboard-0.3.0.js"></script>
    
        <div id="board1" style="width: 50%"></div>

    <script>
        var board1 = ChessBoard('board1', {
            draggable: true,
            position: MyPosition
        });
    </script>
This code displays a chess board position on a browser. Now, I need to be able to send the variable MyPosition from a desktop program written in VB.Net to the server to the browser. I don't know any Javascript, so that my be my weakness with this project. Any help how I can tackle this project would be greatly appreciated. Thank you. Robert.