Web 表单和 MVC
我正在使用 WebForms 编写的银行在线平台工作,我想知道是否可以或应该用 MVC 编写同样的平台。 我读过很多关于 MVC 的文章,但我还没有尝试过,但我必须向专家提出一个问题。
每笔交易都有一个 3 阶段流程,其中用户输入数据、查看数据并获得第三步,即得到确认。我目前有 40 多个这样的进程。我这样做的方式?具有多视图的单个 ASPX。
我怎样才能在 MVC 中做同样的事情?我会有 40+ x 3 次浏览 (120+ aspx) 吗?
谢谢大家。
I'm working in a Banking Online Platform written in WebForms and I'm wondering if the same could or should be written in MVC.
I've read a lot on MVC but i didn't tried yet but i must ask a question for the experts.
Every transaction has a 3 Stage Process where the users input the data, review the data and gets a 3rd step where get's the confirmation. I currently have 40+ processes like this. The way i do it? Single ASPX with MultiView.
How can i do the same in MVC? Would i have 40+ x 3 Views (120+ aspx) ?
Thank U all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MVC 中使用局部视图也可以实现同样的效果。
MVC 可以完全控制渲染的 HTML,并且 JavaScript 框架更容易实现。编写单元测试也容易得多。
从某种意义上说,它也“更轻”,因为它没有任何视图状态事件(这就是在处理大数据时使 Web 窗体变大的原因)
The same can be achieved in MVC by using partial views.
MVC has full control over the rendered HTML and JavaScript frameworks is much easier to implement. It is also a lot more easier to write unit tests.
It is also 'lighter' in the sense that it does not have any View State events (which is the thing that makes Web Forms big when working with big data)