web.config

来自「一个论文管理系统」· CONFIG 代码 · 共 18 行

CONFIG
18
字号
<configuration>
	<system.web>
		<authorization>
			<allow users="*" />
		</authorization>
		<httpHandlers>
			<add path="*.jpeg" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.jpg" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.gif" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.png" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.jpeg.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.jpg.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.gif.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
			<add path="*.png.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,CuteEditor" />
		</httpHandlers>
	</system.web>
</configuration>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?