Hi

Can anybody can provide links to where I can read about how to use MVC with VB.NET (or VB6)

This is the definition I got from http://www.dmbcllc.com/Asp_Mvc.aspx
For those unfamiliar with MVC, MVC stands for Model, View, Controller. The Model is the representation of the thing the user is trying to interact with. It typically holds the data and business rules. The View pulls information from the Model and renders that information in a way the user will understand. The Controller interprets actions by the user, usually mouse and keyboard events, and sends the information to the model or the view. The model knows nothing about the view or the controller other than that they exist. The view and the controller know as much as possible about the model.
Thanks