前端开发人员在.NET世界 - 我需要什么知道吗?开发人员、世界、NET

2023-09-04 00:58:39 作者:单身也很ok

在.NET应用程序有哪些基本prerequisites的前端工作时?什么是我需要知道为了生存,假设我已经有知识的HTML / CSS / JavaScript的加的MVC模式的总体认识以及它是如何工作的。还有什么?

When working on the front-end of a .NET application what are the basic prerequisites? What do I need to know in order to survive, assuming I already have knowledge of HTML/CSS/JavaScript plus a general awareness of the MVC pattern and how it works. Is there anything else?

推荐答案

如果您使用的是ASP.NET MVC中,你需要知道的很少。用户界面的工作是所有关于HTML,CSS和JavaScript。

If you're using ASP.NET MVC, you need to know very little. The UI work is all about HTML, CSS and JavaScript.

奖金-功能,可以帮助你做出好的设计是:

The bonus-features that will help you to make good designs are:

1)母版页(这是可以应用到很多页面模板,所以你只要填充它的内容范围)

1) Master Pages (this is a template that can be applied to many pages, so you just populate it with the content areas)

2)局部视图(您可以创建一个位的网页,该服务器将拼接成一个HTML页面,并且可以加载使用AJAX调用)

2) Partial Views (you can create a "bit" of a web page, which the server will stitch into a single html page AND that you can load using an AJAX call)

 
精彩推荐