Bizarre Input Box Scenario
When I am trying to look at my records from my "Events" database via my ASP I record strange happenings.
Code:
<%
Response.Write "<input name ='AddressField' size='40' value=" & Events("Address1")&">"
%>
The results are that when I view the record It seems to chop off some of the value.
Like if the Address1 Field had a value of " My Address Field", I would get a returned value of "My"
But if I use the following of :
Code:
<%
Response.Write Events("Address1")
%>
Then "My Address Field" is returned, I have tried settings the MAXLENGTH of the input box and that didn't work.
So I am kinda lost for ideas right now.
Any help would be good!
Cheers.