Web Forms and Windows Form
Please explain the different between Web Forms and Windows Form.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted Jan 30, 2013, 9:58 AM
Rishikesh Kumar SinghPosted Jan 30, 2013, 3:01 AM
1) Window forms run on the client machine
whereas, web form runs on the web-server.
2).user interface for Window is easy to build.
where as user interface for web form is difficult to build.
3). Window form is fast.
whereas, web form is slower than that of windows form.
4).All client machines needs to install required versions of .NET framework and other required libraries.
whereas,web app is hosted on the server.so, only server needs to have .net framework and required libraries.
For more differences go through:-
http://www.c-sharpcorner.com/Blogs/416/
http://msdn.microsoft.com/en-us/library/5t6z562c(v=vs.80).aspx
If it helps you then please select it as accepted answer otherwise let me know...
Santhosh Kumar JayaramanPosted Jan 29, 2013, 11:26 PM
webforms are for web applications that are delivered using http and that are rendered inside the browser.
Winform not require hosting on server while Webform required hosting on server.