I am thinking about migrating a VB6 (winform) application to the Web in ASP .NET (C#).
In the current VB6 program the screens structure works like this:
- Login screen - enter parameters - takes you to
- Schedule screen - enter parameters - takes you to
- Barcode scanning screen - scan barcode - takes you to
- Piece count screen - enter piece count - go back to barcode screen
The top most screen(useform) must be dealt with before being able to go back to another form.
What would be the best route to take to mimic this behaviour in ASP .NET? Or would it be better to switch the screen-centric thinking to something else?