-
pass vlaues to iFrame
I have a form that includes the value "email". Upon submit I'd like to pass this value on to a iFrame where the email textbox within the iFrame is auto filled in.
I assume that I need to use a hidden value.
<%
'extrap fields from URL on prev. page
email = request.form("email")
%>
and the iFrame email text box
<%=email%>
How to establish the iFrame to retreive hidden values from it's parent?
thanks everyone!!!
-
-
<%
'extrap fields from URL on prev. page
session("email") = request.form("email")
%>
and the iFrame email text box
<%=session("email")%>
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks