[40分]怪问: asp.net生成后找不到bin目录,更重要的是没有项目dll
环境:
1、vs2005
2、新建生成asp.net网站。
3、cs文件里面的是有代码的:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
this.Title = "hello, world";
}
}
4、项目右键,生成网站!
5、靠,整死掉不到项目dll
------------------------------------------