This topic is locked
[SOLVED]

 import results on redirected page

6/13/2011 11:52:32 AM
ASPRunnerPro General questions
T
Tim author

Hello,
I have an import page that, once the import is complete, I redirect to another page. I would like to show the results of the import (the info that normally displays on the bottom of the import page after the import) on the redirected page. I'm thinking: write those results to a session varible, then print that on the redirected page. Is this possible?
Thanks,

Tim

Sergey Kornilov admin 6/13/2011

You can use AfterImport event to save this info to session variables and display it on another page.
Example:

Session("TotalRecords") = count

Session("SkippedRecords") = skipCount


More info:

http://xlinesoft.com/asprunnerpro/docs/after_import_finished.htm

T
Tim author 6/13/2011

That's what I was looking for!
Thanks,

Tim