Click to See Complete Forum and Search --> : What namespaces can I use?


Koute
December 2nd, 2005, 01:36 AM
When making an application to run in a browser/server what name spaces can I use? Can I only use the System.Web namespace or can I use any of the .Net features? Will everything in the .Net framework run on a server? Some stuff in the System.Windows namespaces can't be used?

Shuja Ali
December 2nd, 2005, 02:00 AM
When making an application to run in a browser/server what name spaces can I use? Can I only use the System.Web namespace or can I use any of the .Net features? Will everything in the .Net framework run on a server? Some stuff in the System.Windows namespaces can't be used?
Almost all the namespaces can be used. But ones that are related to WinForms cannot be accessed from Web Applications.

Koute
December 2nd, 2005, 08:11 AM
Ok, Thanks for the help.