wavesurfer wrote:
> Thanks, that works fine.
>
> However, I need to set the session variable after I do
the check, but can?t
> really figure out how, if I do as follows my update
function doesn?t work, any
> suggestions?
>
> <%
> If Session("vote_id") = Request.QueryString("ID") Then
> Response.Redirect("page.asp")
> End if
> %>
> <%
> Session("vote_id")=Request.QueryString("ID")
> %>
>
<%
If Session("vote_id") = Request.QueryString("ID") Then
Response.Redirect("page.asp")
End if
%>
Your logic doesn't make sense, can you explain in more detail
what you
are trying to do?
Steve