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




Reply With Quote