How to pass parameter with post method in page 1 to page 2's get method's iframe

jayderamu

New Member
the goal is to pass value to candidatelogin2.asp's iframe from candidatelogin.asp\[code\]in candidatelogin.asp<form method="POST" action="http://127.0.0.1/hello/candidatelogin2.asp">can only get hidden textbox value, but can not get visible textbox value in candidatelogin2.asp<form method="GET" action="http://127.0.0.1/hello/candidatelogin2.asp">in candidatelogin2.asp<form action="http://127.0.0.1/hello/login/Default.aspx?loginTypeValue='http://stackoverflow.com/questions/14556627/CANDIDATE'&loginemail=<%=request.querystring("loginemail")%>&password=<%=request.querystring("password") %>" method="get" target="my_iframe"><iframe src="http://127.0.0.1/hello/login/Default.aspx?loginTypeValue='http://stackoverflow.com/questions/14556627/CANDIDATE'&loginemail=<%=request.querystring("loginemail")%>&password=<%=request.querystring("password") %>" width="600" height="400"></iframe>\[/code\]
 
Top