c# – 非调用成员’System.Web.HttpRequest.ServerVariables’不能像方法一样使用

前端之家收集整理的这篇文章主要介绍了c# – 非调用成员’System.Web.HttpRequest.ServerVariables’不能像方法一样使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想取消如下的价值:
string server = Request.ServerVariables("SERVER_NAME");
    //Declare the form being accessed ex: Default.aspx
    string url = Request.ServerVariables("URL");
    // Declare the query string in the URL
    string querystring = Request.ServerVariables("QUERY_STRING");

但是我有一个错误

Non-invocable member ‘System.Web.HttpRequest.ServerVariables’ cannot be used like a method.

请帮忙找到我的错误.谢谢.

解决方法

你试图以VB.Net的方式得到它.你必须使用[]而不是().在C#[]中使用VB.Net()时使用.例如
string server = Request.ServerVariables["SERVER_NAME"];
string url = Request.ServerVariables["URL"];
querystring = Request.ServerVariables["QUERY_STRING"];
原文链接:https://www.f2er.com/csharp/92528.html

猜你在找的C#相关文章