ashish1nov 0 Newbie Poster

Hi Expert i m new in jasp .
i want to show name text after click on button which will be feed in text box .

thanks
ashish

<%@ page contentType="text/html; charset=UTF-8"
session="true" buffer="16kb" autoFlush="true"
isErrorPage="false" isThreadSafe="true"
info="Directive page demo"
import="java.util.Date"%>
<html>
<head>
<title>Directive page demo</title>
</head>
<body>
This is a sample of using an imported class from the page directive:
<br/>
<%=	
	"The current date is: " +new Date()
%> 
<TR>
<TD><p ALIGN=LEFT><B>Please enter your Name:</B></p></TD>
<TD>
<p><INPUT TYPE=text NAME="name" VALUE="" SIZE=15>
</TD>
</TR>
<tr><td COLSPAN=2>
<LEFT>
<INPUT TYPE=SUBMIT VALUE="   OK    ">
</LEFT>
</body>
</html>