Web窗体和Windows窗体之间的区别

Web窗体和Windows窗体之间的区别

问题描述:

我想知道Wats d Web窗体和Windows窗体之间的区别..

I wanted to know Wats d Difference between Web Form and Windows Form..

试试这个链接

Web应用程序和Windows应用程序之间的主要区别 [ ^ ]


Hai

你的问题是基本的问题,反正试试这个链接



http://www.c-sharpcorner.com/Blogs/416/ [ ^ ]





http://social.msdn.microsoft.com/Forums/en-US/927a78e1-3cd3-4f58-8e4b-71fa89646195/what-is-the-difference-between-web-form- and-windows-form-in-visual-studio-using-c-sharp-language-?forum = csharpgeneral [ ^ ]



Web应用程序和Windows应用程序之间的主要区别 [ ^ ]



b $ b

http://forums.asp.net/t/149405 1.aspx?差异+ + Web +表单+和+ Windows +表单+ [ ^ ]



http://www.justskins.com/forums/web-forms-vs-windows-147785.html [ ^ ]
Hai
Ur question is basic level question,anyway try this links

http://www.c-sharpcorner.com/Blogs/416/[^]


http://social.msdn.microsoft.com/Forums/en-US/927a78e1-3cd3-4f58-8e4b-71fa89646195/what-is-the-difference-between-web-form-and-windows-form-in-visual-studio-using-c-sharp-language-?forum=csharpgeneral[^]

main difference between web application and windows application[^]



http://forums.asp.net/t/1494051.aspx?difference+between+Web+form+and+Windows+form+[^]

http://www.justskins.com/forums/web-forms-vs-windows-147785.html[^]


你好它的老话题试着避免这样的问题你会得到关于这个话题的互联网帖子

Hello it's old topic try to avoid such question you will get tones of posts from internet about this topic
Webform is simply a html form, basically a collection of DOM elements and functions as per the specifications of W3C. However asp.net added unique features to it like view state, postback etc., Webforms are platform independent  i.e works on a thin client like web browser, stateless client server architecture.

Windows forms are used in desktop based applications which heavily rely on the GDI. Basically lot of differences between the two from state to the way it functions.

In view of similarity both are GUI components, but the basic framework concepts are same for both. ASP.Net has many additional concepts and vary from windows form development.

If you are thinking in view of portability always separate the UI from the underlying business logic. Which helps moving significant amount of code reuse.

In addition consider WPF where is it easy to portable from windows based development to web based, provided the clients need to have the framework installed.





从以下链接获取更多详细信息

http://msdn.microsoft.com/en-us/library/5t6z562c(v = vs.90).aspx [ ^ ]