从 WinForms 应用程序使用 UrlDecode
我正在创建一个将使用查询字符串值的测试应用程序。我想使用 HttpUtility.UrlDecode。
当我尝试添加对 System.Web 的引用时,System.Web 在列表中不可用。
当我在同一解决方案中创建 Web 项目时,会自动添加 System.Web。
我还尝试从 winforms 项目引用 web 项目,但这似乎不起作用。
有谁知道我如何从 winforms 应用程序中使用 UrlDecode ?
I am creating a test app that will work with query string values. I want to use the HttpUtility.UrlDecode.
When I try to add a refernce to the System.Web, System.Web is not availble in the list.
When I create a web project in the same solution, System.Web is automatically added.
I also tried referencing the web project from the winforms project, but that does not seem to work.
Does anyone know how I can use UrlDecode from a winforms app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是因为您的目标是客户配置文件。尝试更改为完整的 .NET Framework,您将能够引用
System.Web
:This probably because you are targeting the Client Profile. Try changing to the full .NET Framework and you will be able to reference
System.Web
: