アットウィキロゴ

ASP3

<%@ Page Language="C#" %>
<html>
<body>
<form action="delta.aspx" method="POST">
<p>
     名前を入力してください: 
     <input type="text" name="myname"> 
     <input type="submit" value="OK">
</p>
<% 
if(!String.IsNullOrEmpty(Request["myname"])){
 
     Response.Write ("<p>こんにちは, " + Request["myname"] + "さん!</p>");
 
}
%>
 
</form>
</body>
</html>
最終更新:2013年07月08日 09:28