Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hello.I want automatic copy and save. After process edit.How I do?Example: after click save button in Payment_edit.asp ;if Payment1 < GrandTotalPayment then1- EditPage Copy 2- and Save3- Go to List.aspThanks.
Hi,use After record updated event and Save new data in another table action on the Events tab for this purpose.
Hi,Very thanks for your help.Your idea useful.I solved this problem with yor suggestion:....Payment_edit.asp Events/After record updated tab:if dict("Payment1")<dict("GrandTotalPayment") thenResponse.Redirect "Payment_add.asp?copyid1="& dict("ID")elseResponse.Redirect "Payment_list.asp?a=return"end if....(Note: dict("ID") is record row number)This code is work.But I want little something:I not want click "Save Button" in page Payment_add.asp?copyid1="& dict("ID").Where is possible? Auto Saving.Very Thanks.
Hi,you can copy and save record directly in the After record added/After record updated events.Use Save new data in another table action as a sample.