[SOLVED] Get import filename on import page |
11/21/2022 08:59:49 | |
ASPRunner.NET General questions | ||
T
tetter author
Hi all, Alexey aswered to me, that this can be done the following way and I wanted to share this with the community. You can use the following code in Import page: BeforeProcess event: HttpPostedFile file = HttpContext.Current.Request.Files["importFile1"]; or assign it to a session variable ... XSession.Session["importFilename"] = file.FileName; For PHPRunner see this here ... Rgs Thomas |
||
![]() |
Sergey Kornilov admin 11/21/2022 |
Thank you for sharing, Thomas! |
|