Hi
I would like to know if there is an asp function I could add to a textarea in an asp input form (which adds info to an Access Database and displays on a webpage and which can be updated by another form on an online admin area)???
This is the asp code before the <body> of the document of the new info input form (for addition of new info to database, which is then displayed on webpage with asp):
. This is the textarea:
This is the asp code before the <body> of the document of the update info input form (to update current info stored on database, which is displayed on webpage with asp):
. This is the textarea:
Thanks
Matt
I would like to know if there is an asp function I could add to a textarea in an asp input form (which adds info to an Access Database and displays on a webpage and which can be updated by another form on an online admin area)???
This is the asp code before the <body> of the document of the new info input form (for addition of new info to database, which is then displayed on webpage with asp):
Code:
RS("PropertyInfo") = Request.Form("PropertyInfo")
Code:
<textarea name="PropertyInfo" cols="40" rows="5" style="border: 1 solid #000080; padding-top: 0; padding-bottom: 0"></textarea>
This is the asp code before the <body> of the document of the update info input form (to update current info stored on database, which is displayed on webpage with asp):
Code:
Conn.Execute ("UPDATE Property SET Property.PropertyInfo='" & Request.Form("PropertyInfo") & "' " & strWhereClause )
Code:
<textarea name="PropertyInfo" rows="15" cols="50" style="border: 1 solid #000080; padding-top: 0; padding-bottom: 0"><%=RS("PropertyInfo")%></textarea>
Thanks
Matt