Blue Theme Orange Theme Green Theme Red Theme
 
Mindcracker MVP Summit 2012
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Discover the top 5 tips for understanding .NET Interop
Search :       Advanced Search »
Home » ASP.NET and Web » Namespaces in ASP.Net

Namespaces in ASP.Net

[In this article we will discuss on Namespace with respect to ASP.Net web pages.

Author Rank :
Page Views : 976
Downloads : 0
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
Mindcracker MVP Summit 2012
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 


HTML clipboard

Introduction

Namespaces are basic building block of .NET Framework based programming. Namespace helps the programmer to define the class and class has a big list of properties, events and methods. The picture given below will outline some concepts.

Namespace.gif

As we all know, there are over 13,000 classes included in the .NET Framework 2.0. This is really very big list of number. Think if Microsoft bundled all the classes together, then we have to loss our lots of time to find any event, properties or else. So, Microsoft divided the .NET Framework into Assemblies, Classes and Namespaces. Before we can use a class in a page, we must indicate the namespace associated with the class. There are multiple ways of doing this.

  • We can fully qualify a class name with its namespace. For example, because the File class is contained in the System.IO namespace, we can use the following statement to check whether a file exists:

    System.IO.File.Exists("introduction.txt")

Specifying a namespace each and every time is very difficult and also it involves a lot of typing work. So we can use the following one.

  • We can add an <%@ Import %> directive to a page to import a particular namespace. System.Net.Mail namespace we use for mailing and SmtpClient is part of this namespace.

    <%@ Import Namespace="System.Net.Mail" %>   
  • Above one is very cool technique and used in maximum application but if we have to use System.Net.Mail Namespace many-times in same application then we can use that namespace inside the configuration file as given below. We can add a web configuration file to our application by selecting Website, Add New Item and selecting Web Configuration File. We can add multiple Configuration file folder wise for separate purpose. If we add namespace in root Configuration file then it will affect entire web project.

<?xml version="1.0"?>

<configuration>

  <system.web>

    <pages>

      <namespaces>

        <add namespace="System.Net.Mail"/>

      </namespaces>

    </pages>

  </system.web>

</configuration>

Once if we add the web configuration file to our application, then we do not need to import the System.Net.Mail namespace in a page to use the classes from this namespace.

HAVE A GREAT CODING!
 

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Abhimanyu Kumar Vatsa
http://www.itorian.com/about/
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the top 5 tips for understanding .NET
Ricky Leeks presents the top 5 tips for understanding .NET Interoperability. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Team Foundation Server Hosting
Become a Sponsor
 Comments

 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.