Tuesday, 22 April 2014

Difference between Web Form & Window Form

Q:- what is difference between Web Form & Window Form



Web Form
Windows Form
1
Web app. can be access from any were in the world through the internet
1
Window based app. need to be install on your Machine to access.
2
Web applications run on web servers (usually IIS)
2
Win forms Applications run on Clients

3
Web services & Websites (ASP.NET) are typical web applications
3
Win forms applications are programs with a GUI put together by controls
in the System.Windows.Forms namespace
4
web applications have the authentication/authorization mechanism partially built
4
desktop applications (windows forms) need the entire mechanism built
5
web apps have validation controls
5
windows apps don't have validation controls, data needs to be validated
through code

4 comments:

  1. why session can not use in windows form or how to apply session on windows form

    ReplyDelete
    Replies
    1. in windows form I used 'public static string'

      Delete