public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
static void sayhello(string name)
{
response.write("hello" + name);
}
public static void Main()
{
sayhello("pings");
}
}
我把 static void sayhello(string name)
{
response.write("hello" + name);
}
public static void Main()
{
sayhello("pings");
}
写在 public partial class _Default : System.Web.UI.Page
{}
这里面怎麼不对啊
说response 不存在目前内容中
应该要写到哪里的啊?
谢谢了。
leon382 可是我打的时候,它都不自动出来
一般都会自动弹出的啊!
fancyaj 你这样写 是有效果了
不过我要做个我开始写的 要定义静态函数
该怎麼写了?我试著把它写在public partial class _Default : System.Web.UI.Page
{}的外面也不可以。你知道怎麼弄吗?