English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

To develop the ASP.Net application what are the namespaces that are to be downloaded in general?

2007-03-27 04:48:58 · 2 answers · asked by sharifuddin 1 in Computers & Internet Programming & Design

2 answers

The minimum you need to develop a simple page is generally System.Web, System.Web.UI, System.Web.UI.WebControls, and System.Web.UI.HtmlControls. Other common namespaces, that have classes that are used a *lot* are System.Data and System.Configuration.

2007-03-27 06:00:53 · answer #1 · answered by Rex M 6 · 0 1

That depends completely on what your application does. If your page sends an email you need System.net.Mail, but why import if you don't send mail.
If you're querying a database you might need System.Data.SqlClient, but if you don't hit a Db you won't need that.

So it's application specific.

2007-03-27 12:20:17 · answer #2 · answered by rod 6 · 0 1

fedest.com, questions and answers