View Single Post
  #4 (permalink)  
Old December 20th, 2004, 09:10 AM
mmcdonal mmcdonal is offline
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

Try this:

'======================================
Dim strAccess
Dim strClearance

strClearance = "client"

    If Request.Form("Access") = "realestatesales" Then
       strAccess = "realtor"
    End If
'======================================

You can't pass strings unless they are in quotes.
Where are you getting the "Request.Form("Access") from?


mmcdonal
Reply With Quote