What namespaces can I use?
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?
Re: What namespaces can I use?
Quote:
Originally Posted by Koute
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.
Re: What namespaces can I use?