我正在浏览asp.net网站上的ASP.Net网络表单教程here:。本教程包含一个自定义错误的部分,这对我来说有点奇怪。
<customErrors mode="On" defaultRedirect="ErrorPage.aspx?handler=customErrors%20section%20-%20Web.config">
<error statusCode="404" redirect="ErrorPage.aspx?msg=404&handler=customErrors%20section%20-%20Web.config" />
</customErrors>
问题:有人可以在 defaultRedirect &amp;中解释查询字符串参数handler=customErrors%20section%20-%20Web.config"
吗?的重定向?
这种语法有特殊含义吗?
答案 0 :(得分:5)
%20
只是URL编码的空格。它发送一个人类可读的名称,重定向到查询字符串中的错误处理程序页面。