This topic is locked

InnovaEditor ( InnovaStudio )

11/28/2011 10:43:21 AM
ASPRunnerPro General questions
T
TechArt author

I need to know how to protect ( assestmanager.asp ) file upload provided by InnovaEditor ( InnovaStudio ),
Is it possible to inherit the session details from AspRunner project ASP pages with ( InnvoaEditor File Upload " assestmanager.asp " ) ??
Please advise.
Thanks.

Sergey Kornilov admin 11/29/2011

You can add the following code in the beginning of assestmanager.asp file:

if Session("UserID")="" then

Response.Redirect "Location: http://yourwebsite.com/project/login.asp?message=expired"'>http://yourwebsite.com/project/login.asp?message=expired"

Response.end

end if


You will need to to replace http://yourwebsite.com/project/login.asp with the actual URL of the login page.