We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0df409 commit 32a30cfCopy full SHA for 32a30cf
web.config
@@ -0,0 +1,19 @@
1
+<?xml version="1.0" encoding="utf-8" ?>
2
+<configuration>
3
+ <system.web>
4
+ <!--FormsAuthentication-->
5
+ <authentication mode="Forms">
6
+ <forms loginUrl="LoggInn2.aspx" cookieless="UseCookies" requireSSL="true" />
7
+ </authentication>
8
+ <authorization>
9
+ <allow users="*"/>
10
+ </authorization>
11
+ </system.web>
12
+
13
+ <system.webServer>
14
+ <!--RequireAuthentication Module-->
15
+ <modules>
16
+ <add name="AttributeBasedFormsAuthenticationModule" type="AttributeBasedFormsAuthenticationModule" preCondition="integratedMode"/>
17
+ </modules>
18
+ </system.webServer>
19
+</configuration>
0 commit comments