sorry for not be able to describe it more clearly :")) (not native english speaker) on the first invocation of do_add.asp data is available via $Request->Params().. after that do_add.asp call again add.asp (via redirect or include !!!), now I want to pass this data to the newly called add.asp.. and then again the same4 and was wondering does Session is suitable for such thing...:"( 1024 bytes is not a good news
|> 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] | | ----- http://linuxtoday.com/news_story.php3?ltsn=2004-12-08-004-32-OS-BZ-DT-0005 snip> MS Office is popular in the same way as heart disease is the most popular way to die. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]