Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在网站上制作联系表格,并希望使用 C# 和 ASP.NET。我应该使用什么版本的 ASP.NET。我不知道它们之间的区别。我已经通过 HTML 和 CSS 创建了表单,需要添加一些验证。
WebForms 和 MVC 都是基于 ASP.NET 构建的。ASP.NET 是用于 Web 应用程序的基本 .NET 框架库。Microsoft 提供了三个派生框架,WebForms、MVC 和 Web Pages(使用 WebMatrix)。还有一些基于 MVC 构建的第三方框架,例如 fubuMVC 和 Nancy。
Stack Overflow 上已经有很多问题询问它们之间的区别,我建议您搜索它们。
但是,如果您只需要验证,则不需要任何这些,因为您可以直接对静态 HTML 页面使用 jQuery 验证。