I inherited a website and see that folder in the web root. I'm trying to clean out the old crap, and wondering if I can delete it.
我继承了一个网站,并在Web根目录中看到该文件夹。我正在试图清理旧垃圾,并想知道我是否可以删除它。
What is this folder used by? Is it auto generated? Is it a cache? What creates it?
该文件夹使用的是什么?它是自动生成的吗?是缓存吗?创造它的是什么?
3 个解决方案
#1
It is generated by the ASPNET_regiis /c command. Most websites I use have ended up including this in the distribution because the sys admins always forgot to install it. It contains the client side JavaScript libraries required by .NET1.x to handle the postback eventing model on the client side.
它由ASPNET_regiis / c命令生成。我使用的大多数网站最终都包括在发行版中,因为系统管理员总是忘记安装它。它包含.NET1.x在客户端处理回发事件模型所需的客户端JavaScript库。
You can delete it if you have upgraded to .NET 2 which uses a different handler for the scripts (or if you are prepared to recreate it.) But check first that there aren't additional files added there by the author as sometimes I have seen it used for extra stuff.
如果已升级到.NET 2,它可以删除它,它使用不同的脚本处理程序(或者如果您准备重新创建它。)但是首先检查作者是否没有添加其他文件,因为有时我有看到它用于额外的东西。
#2
That folder is used to store auto-generated validation scripts when you add client side validation to your server controls.
当您向服务器控件添加客户端验证时,该文件夹用于存储自动生成的验证脚本。
#3
This folder is among other stuff used to store default Themes for all the applications of the server (.skin files).
此文件夹是用于存储服务器的所有应用程序(.skin文件)的默认主题的其他内容。
#1
It is generated by the ASPNET_regiis /c command. Most websites I use have ended up including this in the distribution because the sys admins always forgot to install it. It contains the client side JavaScript libraries required by .NET1.x to handle the postback eventing model on the client side.
它由ASPNET_regiis / c命令生成。我使用的大多数网站最终都包括在发行版中,因为系统管理员总是忘记安装它。它包含.NET1.x在客户端处理回发事件模型所需的客户端JavaScript库。
You can delete it if you have upgraded to .NET 2 which uses a different handler for the scripts (or if you are prepared to recreate it.) But check first that there aren't additional files added there by the author as sometimes I have seen it used for extra stuff.
如果已升级到.NET 2,它可以删除它,它使用不同的脚本处理程序(或者如果您准备重新创建它。)但是首先检查作者是否没有添加其他文件,因为有时我有看到它用于额外的东西。
#2
That folder is used to store auto-generated validation scripts when you add client side validation to your server controls.
当您向服务器控件添加客户端验证时,该文件夹用于存储自动生成的验证脚本。
#3
This folder is among other stuff used to store default Themes for all the applications of the server (.skin files).
此文件夹是用于存储服务器的所有应用程序(.skin文件)的默认主题的其他内容。