
September 10th, 2003, 09:58 AM
|
 |
Contributing User
|
|
Join Date: Jul 2003
Location: in Orbit mostly
Posts: 148
Time spent in forums: < 1 sec
Reputation Power: 6
|
|
|
Several troubleshooting suggestions, in general, since the cause is unknown:
check the HTML source to see if the value is getting passed as you expect it to be (even if you can't see the results)
echo the value of <%=Rsa.fields("student_name")%> outside the Iframe to see if it is what you are expecting, with something like:
<%Response.Write VbCrLf & "the Student Name field has a value of::"&Rsa.fields("student_name")&"::<br />" & VbCrLf & VbCrLf %> (outside of the form) and even outside of the table if possible.
substitute the ASP code with static code to see if it is complicated by the ASP/DB code.
Getting back to this specific case, the IFRAME content is not usable from the "value" parameter which I don't believe exists. It should be listed as the src="" parameter which requires an external document, I think.
Last edited by OldJacques : September 10th, 2003 at 10:01 AM.
|