私は .NET および C# の「卵」よりも新しく、HTTP 応答 (GET) を取得しているかどうかをテストしたいと考えていました。ファイアウォールの内側で作業しているため、問題がコードにあるのかセキュリティにあるのかわかりません。
http://www.csharp-station.com/howto/httpwebfetch.aspxからコピーされたコード
コード:
using System;
using System.IO;
using System.Net;
using System.Text;
/// <summary>
/// Fetches a Web Page
/// </summary>
class WebFetch
{
static void Main(string[] args)
{
// used to build entire input
StringBuilder sb = new StringBuilder();
// used on each read operation
byte[] buf = new byte[8192];
// prepare the web page we will be asking for
HttpWebRequest request = (HttpWebRequest)
WebRequest.Create("http://www.mayosoftware.com");
// execute the request
HttpWebResponse response = (HttpWebResponse)
request.GetResponse();
// we will read data via the response stream
Stream resStream = response.GetResponseStream();
string tempString = null;
int count = 0;
do
{
// fill the buffer with data
count = resStream.Read(buf, 0, buf.Length);
// make sure we read some data
if (count != 0)
{
// translate from bytes to ASCII text
tempString = Encoding.ASCII.GetString(buf, 0, count);
// continue building the string
sb.Append(tempString);
}
}
while (count > 0); // any more data to read?
// print out page source
Console.WriteLine(sb.ToString());
}
}
エラー:
「/」アプリケーションでサーバー エラーが発生しました。
パーサー エラーの説明: この要求を処理するために必要なリソースの解析中にエラーが発生しました。次の特定の解析エラーの詳細を確認し、ソース ファイルを適切に変更してください。
パーサー エラー メッセージ: 'WebApplication6._Default' は、クラス 'System.Web.UI.Page' を拡張していないため、ここでは許可されていません。
ソース エラー:
1 行目: <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" 2 行目:
CodeBehind="Default.aspx.cs" Inherits="WebApplication6._Default " %> 行 3:
この問題を解決する方法についてのヒント。非常に初心者なので、「ベイビーステップ」を高く評価します。