<html>
<head>
<title>Hello World in ASP </title>
</head>
<body>
<% Response.write "<h1>Hello World! in ASP</h1>" %>
<br>
<%=now%>
</body>
</html>

'Hello_World! > 마소친구_ASP' 카테고리의 다른 글

How ASP.NET Security Vulnerability affects Kentico CMS  (0) 2011.10.19
관리자 페이지 IP 제한  (0) 2011.08.11
Hello World in ASPX  (0) 2011.08.11
Posted by bitfox
l
<%
HelloWorldLabel.Text
= "Hello, world!";
%>
<!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 runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label runat="server" id="HelloWorldLabel"></asp:Label> </div> </form> </body> </html>

ASP 확장판이라고 할까나? ASPX ^^:

'Hello_World! > 마소친구_ASP' 카테고리의 다른 글

How ASP.NET Security Vulnerability affects Kentico CMS  (0) 2011.10.19
관리자 페이지 IP 제한  (0) 2011.08.11
Hello World in ASP  (0) 2011.08.11
Posted by bitfox
l
<HTML>

<HEAD>
<TITLE>hello jsp</TITLE>
<!-- the variable, message, is declared and initialized -->
<%!
String message = "Hello, World, from JSP";
%>
</HEAD>

<BODY>

<!-- the value of the variable, message, is inserted between h2 tags -->
<h2><font color="#AA0000"><%= message%></font></h2>

<h3><font color="#AA0000">
<!-- the java.util.Date method is executed and the result inserted between h3 tags -->
<%= new java.util.Date() %> 
</font></h3>

</BODY>

</HTML>
미친 존재감~ 헬로 월드 +ㅁ+
Posted by bitfox
l