Scotty_32 wrote:
thats what i was on about - the Member API part, sorry if i didnt explain it very well.
|
That's fine scotty, I knew what you meant - but for some reason I had convinced myself that I needed to do it differently..
as for using WWF registration page with the member API, i dont think it would work, i havent look proberly into the member api, so i dont know exactly how it works, so it might course conflicts your best off posting in the WebWiz Forum Version 8 Support Forum and asking borg, i advice you to explain your situation as you may get away with it, since your api members are created by you, so you could check usernames before hand.
|
Yeah, I think it should work - but I'll do just that and see what reply I get.
i was wondering, do your ASP and ASP.Net Sessions work ok together?
|
Well, to be honest I couldn't really get things working using that session stuff, so what I did was I created two cookies in my Rainbow login using:
HttpCookie mycookie = HttpContext.Current.Response.Cookies["USER"];
mycookie.Value = <username>;
mycookie.Path = "/";
(and another for the password)
Then in WWF, I set the following in function_member_api.asp:
strUsername = Request.Cookies("USER")To be honest, I don't really know if it's the best way of doing it - but the whole session thing didn't work and this did!
What do you reckon?
Cheers,
John.
Edited by kanun - 08 June 2006 at 6:43pm