Web 表单和 MVC

发布于 2024-10-09 23:50:59 字数 260 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁人与我共长歌 2024-10-16 23:50:59

在 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文