> I want add.asp to get the focus/be-executed (like it been typed in the > url-bar, not like <a>-link), but get the same data which was typed in the > first-add.asp-FORM. > Like this : > add.asp ---> do_add.asp --> add.asp--. > I__________________| >
no, not so clear, but anyway, you like data created in add.asp to be accessable in do_add.asp (or vice versa) - right? add.asp: .. my $params = { some hash }; .. do_add.asp: .. my $params = { same hash} .. - you can use a Session variable - as you stated - but be aware of the 1024 byte limit of SDBM_File and that you assign the hash in ONE step (for both see Apache::ASP man page) .. $Session->{complex} = {data => $data}; # Write ok, all at once. .. - you can also use the Storable module with "store" and "retrieve" and some unique filename for the stored data or a database like mysql etc. Helmut --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]