如何在不使用 Visual Studio 的情况下在 ASP.Net 2.0 中包含 Anti-XSS
我可以在不使用 Visual Studio 的情况下将 Microsoft 的 Anti-XSS 库包含在我的 ASP.Net 2.0 应用程序中吗?如果是这样,怎么办?
我已经下载并安装了该库。来自 Microsoft 的下载页面:“在应用程序中引用库并使用它。”研究这一点会发现使用 Visual Studio 执行此操作的说明,但并非没有。
这个答案链接到一些有前途的文章,但这些文章也假设 Visual Studio 启动。
(至于为什么我不能使用 Visual Studio:我的经理说“不”。)
Can I include Microsoft's Anti-XSS library in my ASP.Net 2.0 application without Visual Studio? If so, how?
I've already downloaded and installed the library. From Microsoft's download page: "Reference the library in your application and use it." Researching this turns up instructions for doing so with Visual Studio, but not without.
This S.O. answer links to a few promising articles, but those also assume Visual Studio to start.
(As for why I can't use Visual Studio: my manager says "No.")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常简单,只需将文件
\program Files\Microsoft Corporation\Anti-Cross Site Scripting Library V1.5\Library\Net 2.0\AntiXssLibrary.dll
复制到您的/bin/< /code> 你的 asp.net 目录,你准备使用它,只需在你愿意使用它的每个代码中包含 antixss 的引用即可。
该库是这个文件:
AntiXssLibrary.dll
如果在我编写的目录中找不到,只需搜索您安装它的磁盘。
版本 4.2.1
对于版本 4.2.1,您有一个链接,文件已打开
,您将
AntiXssLibrary.dll
和AntiXssLibrary.xml
复制到您的 < asp.net 的 code>/Bin/ 目录下载
如果您无法从 Visual Studio 或 SDK 中找到安装在计算机上的库,您可以随时从 Microsoft 下载它。最新版本位于:
https://www.microsoft。 com/en-us/download/details.aspx?id=43126
Its very simple, just copy the file
\program Files\Microsoft Corporation\Anti-Cross Site Scripting Library V1.5\Library\Net 2.0\AntiXssLibrary.dll
, into your/bin/
directory of your asp.net and you ready to use it by just include the reference of antixss in every code that you won to use it.The library is this file:
AntiXssLibrary.dll
If not found on the directory I write for, just search your disk, where you have install it.
Ver 4.2.1
For the version 4.2.1 that you have a link on it the files are on
and you copy both,
AntiXssLibrary.dll
andAntiXssLibrary.xml
to your/Bin/
directory of your asp.netDownload
If you can not find the library installed on your computer from the visual studio or from the SDK, you can always download it from Microsoft. The latest version is here:
https://www.microsoft.com/en-us/download/details.aspx?id=43126