Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is REST mandatory for MVC?

I am beginning on ASP.net MVC. All the articles I have read so far mention REST as a key feature in MVC implementation My question: is REST mandatory for MVC implementation?

like image 759
balalakshmi Avatar asked Feb 28 '23 08:02

balalakshmi


1 Answers

No. You can use any url scheme you want. MVC just makes doing REST much easier than WebForms.

like image 171
tvanfosson Avatar answered Mar 07 '23 16:03

tvanfosson