|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
how do i populate a text area(not text box)with record from access database using asp
<i><b>Originally posted by : venkatesh krishnamurthy (venky33@hotmail.com)</b></i><br />1)how do i insert a single quote in an access db through asp ps help required urgently<br />2)how do i check for a single quote taken from an asp form do be inserted in an access database:<br />for eg. what's the question i give the answer's that is the single quote can appear randomly<br />3)how do i populate a text area(not text box)with record from access database using asp
|
|
#2
|
|||
|
|||
|
<i><b>Originally posted by : steve</b></i><br />populating a textarea box is the same as textbox<br />set rs = server.createobject("adodb.recordset")<br />rs.open "tablename", conn, 3, 3<br />rs.addnew<br />rs("somememofield") = request.form("sometextarea")<br />rs.update<br />rs.close<br />set rs = nothing<br /><br /><br />------------<br />venkatesh krishnamurthy at 4/8/2000 7:26:18 AM<br /><br />1)how do i insert a single quote in an access db through asp ps help required urgently<br />2)how do i check for a single quote taken from an asp form do be inserted in an access database:<br />for eg. what's the question i give the answer's that is the single quote can appear randomly<br />3)how do i populate a text area(not text box)with record from access database using asp
|
![]() |
| Viewing: ASP Free Forums > Programming > ASP Development > how do i populate a text area(not text box)with record from access database using asp |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|