J
John
Hi all,
My problem is this.
I have a page with a data input form, and that forms submits it to an
Access database (I've checked, it is there)
I have another page which displays the same form boxes written in ASP.
using ASP, the intention is to display previously entered database
info ready for editing/updating.
On this page is...
a textbox
a textbox
a text area
a text area
a text box
a text box
a text box
a text box
The only ones which seem to display correctly are the bottom 4 text
boxes.
The top two text boxes only display the first word of that content.
The two text area boxes display nothing.
the relevant pieces of code are....
Response.Write "<p class=""formheadings"">Edit Company Name (max
length 40)</p>"
Response.Write "<p><input type=""text"" name=""company"" value=" &
objRS("Company") & " size=""40"" tabindex=""1"" maxlength=""40""
class=""formcontent""></p>"
Response.Write "<p class=""formheadings"">Edit Article Heading (max
length 100)</p>"
Response.Write "<p><input type=""text"" name=""heading"" value=" &
objRS("Heading") & "size=""40"" tabindex=""2"" maxlength=""100""
class=""formcontent""></p>"
I'M BAFFLED!
Any ideas anyone?
TIA,
My problem is this.
I have a page with a data input form, and that forms submits it to an
Access database (I've checked, it is there)
I have another page which displays the same form boxes written in ASP.
using ASP, the intention is to display previously entered database
info ready for editing/updating.
On this page is...
a textbox
a textbox
a text area
a text area
a text box
a text box
a text box
a text box
The only ones which seem to display correctly are the bottom 4 text
boxes.
The top two text boxes only display the first word of that content.
The two text area boxes display nothing.
the relevant pieces of code are....
Response.Write "<p class=""formheadings"">Edit Company Name (max
length 40)</p>"
Response.Write "<p><input type=""text"" name=""company"" value=" &
objRS("Company") & " size=""40"" tabindex=""1"" maxlength=""40""
class=""formcontent""></p>"
Response.Write "<p class=""formheadings"">Edit Article Heading (max
length 100)</p>"
Response.Write "<p><input type=""text"" name=""heading"" value=" &
objRS("Heading") & "size=""40"" tabindex=""2"" maxlength=""100""
class=""formcontent""></p>"
I'M BAFFLED!
Any ideas anyone?
TIA,