|
蓝森林 http://www.lslnet.com 2006年8月25日 8:28
[.net]我是C#初学者,想看个HELLO WORLD的程序
以前一直用C++,现在在学习C#,但是在WEB程序里,不知道程序如何运行,所以想看看各位能否提供个HELLO WORLD的程序。
谢谢! |
web中的?
private void Page_Load(object sender, System.EventArgs e)
{
Response.Write ("Hello World!");
} |
[html]
<%@ Page Language="C#" %>
<script runat="server">
void Page_Load(object sender, EventArgs e) {
Response.Write("hello world");
}
</script>
[/html]
谢谢了,第一个程序,呵呵,发现没有main()还真是不习惯 |
|