Hi Steve,
Thanks for posting in the forum. Your questions are very generic Web programming questions and well beyond the scope of our support, so we will not be able to cover in great details. A few pointers are provided below:
Java and JavaScript are totally different things. I assume you meant JavaScript. You don't need to know anything about Java to work on web pages. But JavaScript is pretty much a must. JavaScript itself is a rather big topic. This page might be a good starting point:
http://www.w3schools.com/JS/default.aspNot only JavaScript itself is a big topic, it is also always used together with DHTML, which means you also have to know DHTML pretty well to be able to use JavaScript effectively. Your code appears to have the JavaScript part right, but had the DHTML part wrong. Specifically, by writing "myLabelElement.Text", you assumed that myLabelElement is a "Label". It is not. "Label" is a server side thing and does not exist on the client side. You will need to find out the corresponding DHTML object on the client side and then use the DHTML object's interface to work with anything on the client side.
As for calling VB code behind from JavaScript, you will be looking into AJAX. That again is another huge topic. You can start with ASP.NET AJAX or our CallbackPanel to get an idea of how it works.
If you still have questions on these issues, you may want to consult other resources. Our support only covers questions that are directly related to our product and our official support doesn’t go beyond that. You can review our support policy at here:
http://www.essentialobjects.com/Forum/Default.aspx?g=posts&t=1368Thanks