CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: ASP security

  1. #1
    Join Date
    Nov 1999
    Location
    Hong Kong
    Posts
    18

    ASP security

    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



  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: ASP security

    use Session variables instead.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured