Click to See Complete Forum and Search --> : ASP security


simonkwan
December 16th, 1999, 03:07 AM
Hi, Please see the following code :

<% tmpid = "123456" %>
<frameset rows="30%,*">
<frame src="top.asp?id=<%=tmpid%>">
<frame src="bottom.asp?id=<%=tmpid%>">
</frameset>

I should pass the parameter "id" to the two asp file, but I don't want the value disclose to any users. How can I pass values by post ?
Anyone can help me ?
Thank you !

Simon Kwan

Lothar Haensler
December 16th, 1999, 03:29 AM
use Session variables instead.