0

I'm very new to ASP.NET and creating web pages, my previous experience has all been creating WinForms apps. I am having a bit of a rough time just getting the layout of pages the way I want. Whereas I have been used to just dragging and dropping controls exactly where I wanted them on a Windows Form, the VWD development environment for ASP pages seems very fragmented to me with its master pages, content pages, CSS files etc.

What I'd like to know is are there any add-ins or design programs that could greatly simplify designing web pages, so that I can get on with the code behind aspect of my site, rather than spending so long simply trying to get the presentation right?

4

2 回答 2

3

嗯,我可以理解从 WInForms 迁移到 Web 起初可能会令人困惑。

这一切都是为了理解 HTML,尤其是与 CSS 相结合的元素流。周围有一些工具(甚至是设计模式下的 Visual Studio),但它们通常会创建糟糕的 HTML 或许多在平板电脑、手机等设备上表现不佳的固定布局。

如果您是新手,请专注于 MVC 并获得一个框架(示例 Twitter Bootstrap http://getbootstrap.com/2.3.2/)应该可以让您快速启动并运行。

有关定位的更多信息: http ://www.barelyfitz.com/screencast/html-training/css/positioning

于 2013-08-11T14:33:29.210 回答
1

@Pleun 对使用Twitter BootstrapASP.NET-MVC发表了很好的评论。我想补充一点,有一个很好的库可以将这两者进一步联系在一起:

TwitterBootstrapMVC

与必须编写的代码相比,您最终编写的代码更少。整个体验确实变得类似于拖放。

于 2013-08-14T19:15:05.760 回答