Implementing the SQL Server Session Provider by using aspnet_regsql.
In Web Config
<sessionState mode ="SQLServer" cookieless="false" timeout="1" allowCustomSqlDatabase="true" sqlConnectionString="Password=ads;Persist Security Info=True;User ID=sa;Initial Catalog=ASPState;Data Source=DF" />
When Session is created the new row is added for that session in database, but when session expires it is not deleting the row. whether we manually need to customize the method for deleting the expired session? If yes, explian the methods we need to override.
Thanks,
Pravin
Go through the Implementing a Session-State Store Provider ‘s Deleting Expired Session-Store Data section.
Ref: Delete session from database after it expired?