我在aspx.cs文件中写入如下代码: 
using System.Runtime.InteropServices; 
class test 

[DLLImport("DLLtest")] 
private extern static int ttt(); 

public partial class user_TreeView : System.Web.UI.Page 

protected void Page_Load(object sender, EventArgs e) 


protected void LinkButton5_Click(object sender, EventArgs e) 

Label1.Text = test.test().toString(); 
} } 
编译运行时出现以下错误: 
错误 1 找不到类型或命名空间名称“DLLImport”(是否缺少 using 指令或程序集引用?) D:\inetpub\MuiscPlatform\user\TreeView.aspx.cs 44 6 D:\inetpub\MuiscPlatform\ 
错误 2 找不到类型或命名空间名称“DLLImportAttribute”(是否缺少 using 指令或程序集引用?) D:\inetpub\MuiscPlatform\user\TreeView.aspx.cs 44 6 D:\inetpub\MuiscPlatform\ 
请问大侠有什么方法解决呢?