ASP.NET 引用SQLHelper.cs问题
我在项目中 新建了一个 DBL文件夹--添加微软的 SQLHelper.cs文件.
-------------------------------------------------------------------------------
// SQLHelper.cs文件
using System;
using System.Data;
using System.Xml;
using System.Data.SqlClient;
using System.Collections;
namespace WebSite2
{
/// <summary>
/// The SqlHelper class is intended to encapsulate high performance, scalable best practices for
/// common uses of SqlClient
/// </summary>
public sealed class SqlHelper
{
--------------------------------------------------------------
我在项目的一个Default.aspx.cs
中 using WebSite2;
怎么不能使用 SqlHelper 阿?