控制台应用程序返回结果只是不是整个aspx代码

时间:2017-12-07 03:35:57

标签: asp.net api controller console console-application

我的aspx.page只有json retun。但是当我使用console来调用aspx链接时,它会返回整个代码。我需要改变什么才能从aspx中获得回报。

   static void Cloud()
    {
        using (var client = new WebClient()) //WebClient  
        {
            client.Encoding = System.Text.Encoding.UTF8;

            client.Headers.Add("Content-Type:application/json"); //Content-Type  
            client.Headers.Add("Accept:application/json");


            var result = client.DownloadString("http://localhost:49299/test.aspx"); //URIhttp://localhost:49299/api/values/1  
            Console.WriteLine(result);
            Console.ReadLine();


        }

aspx code console result

0 个答案:

没有答案