web.config 的 codeBase 的 href 元素有什么作用?
What does web.config's codeBase's href element do?
ASP.Net 对 web.config 的 codeBase 元素的 href 元素做了什么?
它真的出去到网址,远程读取文件吗?
根据codeBase Element docs href 属性:
Specifies the URL where the runtime can find the specified version of
the assembly.
如果程序集不是私有程序集,它可以在 Internet 上,因此它确实从网址获取程序集。它也可以是应用程序目录的本地相对路径。
ASP.Net 对 web.config 的 codeBase 元素的 href 元素做了什么?
它真的出去到网址,远程读取文件吗?
根据codeBase Element docs href 属性:
Specifies the URL where the runtime can find the specified version of the assembly.
如果程序集不是私有程序集,它可以在 Internet 上,因此它确实从网址获取程序集。它也可以是应用程序目录的本地相对路径。