I have created a folder in my website in asp.net C# usindg VS'10 ,,
Now i added a class into that folder with namespace as under:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace ThreeTierSample.BLL
{
/// <summary>
/// Summary description for Student
/// </summary>
public class Student
{
public Student()
{
//
// TODO: Add constructor logic here
//
}
public void insert()
{
}
}
}
I want to use this namespace into code behind file for that i'm trying to include namespace with statement :
using ThreeTierSample.BLL
but the problem is that it will not allow me to add this namespace even it doent show in intellisence.
Help me to resolve this issue.
Below is the screen shot of my project hierarchy: