Is it possible to use MVC with VB and ASP?

1
Is there a framework or way to work with MVC in ASP + VB?

Correct me if I'm wrong, but I'm thinking of working this way:

View -> .ASP
Controller -> .ASP.VB
MODELO/DAO -> .VB
    
asked by anonymous 21.08.2017 / 19:07

1 answer

3

In ASP probably not. If it is ASP.NET MVC no problem, after all it was made for this.

I imagine you're starting a new project, right? If it is not so it does not make sense, after all if you are going to continue with what you do not have to think about it.

There are not many plausible reasons for not choosing ASP.NET Core or at least ASP.NET MVC logo.

In fact there are several reasons not to use ASP, the main thing is that it has not been supported for a long time.

If you are worried about learning a new language, learn a new framework to give even more work. If you choose VB.NET the distance to VB is small. And the advantages are huge, worth the investment and will get a lot ready.

If you are using a platform that does not run .NET Core, you can run some old version of the .NET Framework. If you are on a platform that is not even possible, the least of your problems is choosing an MVC. It would be better to find other solutions since the project is new and you can find some viable.

Even if you give to simulate ASP was not designed to work as MVC, there will be a lot of impedance. If it still continues in ASP use its model.

If you already use ASP.NET MVC then you are using at least .NET Farmwork so there is no problem using VB.NET.

Maybe you're thinking ASP is the same thing as ASP.NET and that's the same as ASP.NET MVC. They are not, everything is different. You may think that these technologies are languages, and they are not. You will schedule in VB.NET and use ASP.NET MVC in the project.

How to organize the project, what to use at each point will learn when to start.

I suggest you look for a good course where you start with the basics because there are still difficulties with names.

    
21.08.2017 / 19:18