5 Sep
2003
5 Sep
'03
6:41 p.m.
Thomas Widmer wrote at 2003-9-2 05:02 -0700:
... For the use of a conference registration I want the applicants to be able to modify their indications after they subscribed a form. So I tried to create a user (with success) and authenticate him within the same method (without success).
This is difficult. It is impossible when you use HTTP authentication (as in this case, the browser must provide the login information and there is no way for the server to give it this information). When you use cookie based authentication, set the cookie (the "CookieCrumber" has a method for this) and then redirect to some page. Dieter