我学习jsp时Dreamweaver8很正常,最近学习asp.net,不知道为什么Dreamweaver8有时候不能正常显示net代码。 
流程: 
正常打开Dreamweaver8; 
新建文件-动态页-选择asp.net(c#) 
就是这样我什么都没动;自动生成的代码为: <%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>无标题文档</title> 
</head> 
<body> 
</body> 
</html> 在<body></body>间测试 
<% 
response.Write("你好"); 
%> 
检查IIS配置与Dreamweaver8正常后编译 
IE显示:在上下文中无法找到"response" 环境windows2000server+IIS6.0+.net2.0类库 
IIS ASP.net设置确认是正常的 
请问高手这是怎么回事啊,急求正解!
是否.net代码部分只有在VS中实现呢?