Hello DaniWeb. Just brushing up on some Java and got a quick syntax question. What does the this code do?
LoginForm formBean = (LoginForm)form;
Now I know that a formBean object of type LoginForm is being created but I dont know what its being declared with. Whats happening on the other side of the equation? I'm assuming that this is another way of creating a form object of LoginForm type but I need to know for sure.