-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
104 lines (85 loc) · 3.66 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8" ?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<appSettings>
<!-- Reference to the jQuery Javascript library -->
<add key="jQuery"
value="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"/>
<!-- Blog Title-->
<!-- Replace ... below with your full name -->
<add key="blogtitle"
value="Ayaskant's Blog"/>
</appSettings>
<system.web>
<!-- Enable debug compilation for a teaching environment -->
<compilation debug="true" targetFramework="4.0">
<assemblies>
<!-- LINQ -->
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<!-- Allow errors to be seen directly on the web for debugging -->
<customErrors mode="Off"/>
<!-- Enable login roles -->
<roleManager enabled="true" />
<!-- Enable forms identification in login -->
<authentication mode="Forms" />
<pages>
<controls>
<!-- Tag prefix for the rasala controls -->
<add tagPrefix="rasala" namespace="edu.neu.ccis.rasala.controls"/>
</controls>
</pages>
<!-- Fill in this block for using handlers in Visual Studio testing. -->
<httpHandlers>
<add verb="*" path="download.aspx"
type="edu.neu.ccis.rasala.Downloader"/>
<add verb="*" path="autofile.aspx"
type="edu.neu.ccis.rasala.AutoFileHandler"/>
<add verb="*" path="simpleproxy.aspx"
type="edu.neu.ccis.rasala.SimpleProxy"/>
<add verb="*" path="AutoBox*.aspx"
type="edu.neu.ccis.rasala.AutoBoxHandler"/>
<add verb="*" path="AutoOval*.aspx"
type="edu.neu.ccis.rasala.AutoOvalHandler"/>
</httpHandlers>
<!-- Allow request validation to be specified in the @ Page directive -->
<httpRuntime requestValidationMode="2.0"/>
</system.web>
<system.webServer>
<!--
The validation hack allows both the httpHandlers section above
and the handlers section below to coexist when deployed on the
IIS 7 server.
This allows the same web.config file to be used both in VS and
on the IIS 7 server.
This is convenient in a teaching environment but is not
recommended for use in production sites.
-->
<validation validateIntegratedModeConfiguration="false" />
<!--
Fill this block for using handlers in deployment on the IIS 7 server.
Keep in mind that each add tag must have a name attribute.
-->
<handlers>
<add verb="*" path="download.aspx"
type="edu.neu.ccis.rasala.Downloader"
name="Downloader" />
<add verb="*" path="autofile.aspx"
type="edu.neu.ccis.rasala.AutoFileHandler"
name="AutoFileHandler"/>
<add verb="*" path="simpleproxy.aspx"
type="edu.neu.ccis.rasala.SimpleProxy"
name="SimpleProxy"/>
<add verb="*" path="AutoBox*.aspx"
type="edu.neu.ccis.rasala.AutoBoxHandler"
name="AutoBoxHandler"/>
<add verb="*" path="AutoOval*.aspx"
type="edu.neu.ccis.rasala.AutoOvalHandler"
name="AutoOvalHandler"/>
</handlers>
</system.webServer>
</configuration>