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
-

