I am a new user of Snitzwith a problem similar to Roger Fredriksson, whom you helped a few days ago. I have tried to apply the answers you provided him, but so far unsuccessfully. Like him, I need to be able to log people onto Snitz from an ASP program and circumvent the Snitz login function. The page I am using to attempt this is shown below. No cookie is being created and thus the login is not accomplished. Can you help?
<!--#INCLUDE FILE="config.asp" --> <% dim s sub docookies(fsavepassword) if strsetcookietoforum=1 then response.cookies(struniqueid & "User").path=strcookieurl else response.cookies(struniqueid & "User").path ="/" end if response.cookies(struniqueid & "User")("name")="takabyte" response.cookies(struniqueid & "User")("pword")="john316" response.cookies(struniqueid & "User").expires=dateadd("d",intcookieduration,strforumtimeadjust) end sub call docookies(s) %>
This is test data only, so I don't care about encryption. Is there some reason why it won't work without being encrypted? If so, please tell me how to do that.