Web.Config

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to add a new attribute in Web.Config for custom membership provider.
It's name shouyld be ResyncMintues. I want to set it's time too 5 mintues.
How can I do that
 
I want to add a new attribute in Web.Config for custom membership provider.
It's name shouyld be ResyncMintues. I want to set it's time too 5 mintues.
How can I do that

<membership
defaultProvider="ResyncMintues" >
<providers>
<add name="ResyncMintues"
type="ResyncMintues"
... />
</providers>
</membership>
 
Back
Top