Running classic asp web application in recent DataFlex versions: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
(Created page with "When trying to run a classic asp style web application in DataFlex 19.0 and newer you might bump into problems trying to run it. This is because of the WebAppServerSession.Pa...")
 
m (Changed from Web Programming to Web Applications category)
Line 14: Line 14:
  https://support.dataaccess.com/Forums/showthread.php?63945-Is-Classic-ASP-broken-in-19-0
  https://support.dataaccess.com/Forums/showthread.php?63945-Is-Classic-ASP-broken-in-19-0


[[Category:Web Programming]]
[[Category:Web Applications]]

Revision as of 15:14, 8 April 2020

When trying to run a classic asp style web application in DataFlex 19.0 and newer you might bump into problems trying to run it.

This is because of the WebAppServerSession.PageScopedSession in the global.asa file.

When you create a new web application in DataFlex 19.0 then the Studio assumes you are trying to create a new style application and it will create a global.asa file where it assumes you do not need asp sessions any more.

For classic asp style applications this needs to be set to false.

WebAppServerSession.PageScopedSession=False

See also:

https://support.dataaccess.com/Forums/showthread.php?63945-Is-Classic-ASP-broken-in-19-0