How to send data to textbox with spaces

<html>

<head>

<title> jsp code..</title>

<body>

<%

String temp=have a nice day;

%>

// in my project at Runtime i will assign data to temp

<h1>output in the textbox</h1>

<input type="text" name="a1" value=<%=temp%> />

// here the data in temp should be displayed in this textbox(a1)

</body>

</html>

Expected Output in textbox(a1)= have a nice day

But the Output is = have

-

[507 byte] By [sivakumar243a] at [2007-11-27 11:40:39]
# 1

You're forgotten double quotes.

BalusCa at 2007-7-29 17:33:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

thanks a lot , Now my code is working perfectly

sivakumar243a at 2007-7-29 17:33:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

thanks a lot , Now my code is working perfectly

sivakumar243a at 2007-7-29 17:33:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...