![]() |
Sergey Kornilov admin 1/14/2011 |
Do you leave the edit page after it was saved or stay there? |
G
|
GerryT author 1/14/2011 |
Thank you, that is exactly what it was. I had it redirecting to the listing page after it was saved. Where/how can i redirect it after it is saved and still have it unlock the record? |
![]() |
Sergey Kornilov admin 1/14/2011 |
An excerpt from http://xlinesoft.com/asprunnerpro/docs/audit.htm If user goes to the Edit page and then clicks Back, it turns out that the record remains blocked. To prevent this, automatic unlocking method is used. By default, the record will be unlocked after 300 seconds. You can change this value by editing the file include/locking.asp: this_object.ConfirmTime = 250 this_object.UnlockTime = 300 The variable ConfirmTime determines how often the Edit page sends confirmation that the record is still locked. The variable UnlockTime determines the time (in seconds) after the last confirmation when the record will be unlocked automatically.
|
G
|
GerryT author 1/16/2011 |
Thanks, I was refering to setting the timeout on the individual logged in with their username (example: i login as admin, after 20 minutes it auto logs me out). I am not sure what the default is or where I can set/modify that. |
![]() |
Sergey Kornilov admin 1/16/2011 |
Session (login) timeout can be set per website only. You can change session timeout in IIS settings. Default session timeout is 20 minutes.
|