This topic is locked

fieldname1 value send to url

11/26/2008 5:54:00 AM
ASPRunnerPro General questions
E
erdinoxyz author

Hi!

Asprunner is revelotion. You congratulation for this program.
Fieldname1 in to sales_edit.asp.

How is send, Fieldname1 value to bottom link?
sales_list.asp?a=search&value=1&SearchFor=Fieldname1&SearchOption=Contains&SearchField=

J
Jane 11/26/2008

Hi,
all entered values are stored in the dict collection in the After record updated event on the Events tab.

Here is a sample:

Response.Redirect "sales_list.asp?a=search&value=1&SearchFor=" & dict("Fieldname1") & "&SearchOption=Contains&SearchField="

E
erdinoxyz author 11/26/2008

Hi,

all entered values are stored in the dict collection in the After record updated event on the Events tab.

Here is a sample:


Your code, really perfect.

Thanks for your help