This topic is locked

Send Value

6/25/2009 2:38:51 AM
ASPRunnerPro General questions
O
Osman author

Sincerely,

ASPRunner really perfect program.

I have a problem.

I want to send the value in the page at to other page.

For example:

FieldName1.value in Customer_ListPage.

FeldName2.value in Adresses_ListPage.

Clicked link at CustomerAdress.

Open it AdressesPage.

And..

FieldName2.Value=FielName1.Value in Adresses_ListPage.

HOW IS DONE ?

Thanks.

J
Jane 6/25/2009

Hi,
you can select actual value from Customer table in the event on the Events tab, save it in the session variable and then use it as default value on the "Edit as" settings dialog on the Visual Editor tab.

C
clig 6/25/2009

Sincerely,

ASPRunner really perfect program.

I have a problem.

I want to send the value in the page at to other page.

For example:

FieldName1.value in Customer_ListPage.

FeldName2.value in Adresses_ListPage.

Clicked link at CustomerAdress.

Open it AdressesPage.

And..

FieldName2.Value=FielName1.Value in Adresses_ListPage.

HOW IS DONE ?

Thanks.


After Add

After Edit

  • you can capture this value from dict(dkeys(n)) - replace n with the field # - If remember correctly they start at 0
    thus you can carry a session
    Dim Keys

    Session("FieldName2") = dict(dkeys(2))

    Session("FieldName3") = dict(dkeys(1))
    Or simply:
    Session("FieldName_new") = dict("FieldName2")
    Then you can redirect by building a query if you are looking for these values in another page else set the default (and) "Edit" page defaults on the next page...

O
Osman author 6/26/2009

Hi,

Thanks for help.

Your quote to be useful.