Hi All,
i have folowing setting in asp.net application
Web.Config - Authentication mode set to "Form"
IIS Authentication Settings - Anonymous - disabled,Form - enabled (bcoz it is form in config file) and Windows - enabled
I know it is not a right combination to have both Form and windows authentication enabled in IIS. But still we have managed to perform login against our custom database succesfully.No issues reg this.
Problem i am facing - i have specified some page called 'Test1.aspx' in location path section of config file. we are calling this page on logout click to perform some operation.Now when server try to access the this 'Test1.aspx' page after session expire (not immdiately,may be 2 min after session expires),server not able find the file.Obviously reason for this is 'Anonymous' in IIS is disabled.I knew reason for problem but i need some solution to resolve issues in this scenario.
Note :- Please don;t ask me change settings in IIS and also authentication mode in config.
please give me solution to acces that file in such scenario.
Thanks,