6

Web.config फ़ाइल जानकारी के इस टुकड़े में वहाँ हैAsp.Net MVC में मेरे पास प्रमाणीकरण मोड के साथ अन्य विकल्प क्या हैं?

<authentication mode="Forms"> 
    <forms loginUrl="~/Account/LogOn" timeout="2880" /> 
</authentication> 

क्या अन्य मोड मैं सेट कर सकते हैं और मैं कई मोड हो सकता था?

कुछ उपयोगकर्ता उपयोगकर्ता नाम/पास का उपयोग करके लॉगऑन कर सकते हैं, अन्य x509 क्लाइंटक्रर्ट के साथ।

इस पर कुछ जानकारी कहां है?

उत्तर

1

हम MVC में पांच प्रमाणीकरण मोड हो सकता है ...

<authentication mode="Federated"></authentication> 
<authentication mode="Forms"></authentication> 
<authentication mode="None"></authentication> 
<authentication mode="Passport"></authentication> 
<authentication mode="Windows"></authentication> 
संबंधित मुद्दे