0

我正在尝试将基于命令行的 HTTP 发布到网页,该命令行可以登录并检索一些数据或执行其他操作。我有所有代码,但它不喜欢静态字段 Main 中的非静态内容,我该如何解决这个问题?

 static void Main(string[] args)
    {
        System.Console.Title = "Test Project";
        bool GoodUsername = false;
        string Username = "";
        while (GoodUsername == false)
        {
            Console.WriteLine("Please enter your username.");
             Username = Console.ReadLine();
            Console.WriteLine("Is " + Username + " correct? Type Yes or No");
            string YesNo = Console.ReadLine();
            if (YesNo == "yes" || YesNo == "Yes" || YesNo == "y")
            {
                GoodUsername = true;
                //return;
            }      
        }
        bool GoodPassword = false;
        string Password = "";           
        while (GoodPassword == false)
        {
            Console.WriteLine("Please enter your password.");
            Password = Console.ReadLine();
            Console.WriteLine("Attempting to log in.");
               string PostURL = "username=" + Username + "&password=" + Password + "&login=Login";
              string URLs = "http://c-rpg.net/index.php?page=login";
             string Response = CRPG.CRPG.DoPost(URLs, PostURL);                       
        }
    }       

是我的一个班级的代码。

 string Response = CRPG.CRPG.DoPost(URLs, PostURL);             

给我错误。

 CookieContainer cookies = new CookieContainer();
    protected string DoPost(string URLr, string POST)
    {
        Uri url = new Uri(URLr);
        HttpWebRequest HttpWRequest = (HttpWebRequest)WebRequest.Create(url);

        HttpWRequest.Headers.Set("Pragma", "no-cache");
        HttpWRequest.Timeout = 5000;
        HttpWRequest.Method = "POST";
        HttpWRequest.ContentType = "application/x-www-form-urlencoded";
        HttpWRequest.CookieContainer = cookies;

        byte[] PostData = System.Text.Encoding.ASCII.GetBytes(POST);
        HttpWRequest.ContentLength = PostData.Length;
        Stream tempStream = HttpWRequest.GetRequestStream();
        tempStream.Write(PostData, 0, PostData.Length);
        tempStream.Close();

        HttpWebResponse HttpWResponse = (HttpWebResponse)HttpWRequest.GetResponse();
        Stream receiveStream = HttpWResponse.GetResponseStream();
        StreamReader readStream = new StreamReader(receiveStream);

        string rcstr = "";
        Char[] read = new Char[256];
        int count = 0;
        while ((count = readStream.Read(read, 0, 256)) > 0)
        {
            rcstr += new String(read, 0, count);
        }
        HttpWResponse.Close();
        readStream.Close();
        return rcstr;
    }

我可以把它公开,它给了我错误。

Error   1   An object reference is required for the non-static field, method, or property 'CRPG.CRPG.DoPost(string, string)'    c:\users\sales\documents\visual studio 2010\Projects\Test_CL\Test_CL\Program.cs 40
4

1 回答 1

1

DoPost()并且该cookies字段是实例成员。
您需要该类的一个实例来调用它们。

你可能想让它们变成静态的。

于 2012-11-02T19:02:54.687 回答