複数のニュース Web サイトのコンテンツを表示するニュース Web サイトを作成しようとしていました
開始時にWebclientを少し試してみて、単純なWebフォームで正常に動作しています
しかし、MVC に到達すると、次のようになります: The name 'read' does not exist in the current context
以下のコード:
public ActionResult News()
{
var read = "";
var msg = "";
try
{
WebClient myC = new WebClient();
read = myC.DownloadString("http://localhost:61123/Videos");
}
catch (Exception ex)
{
msg = ex.Message.ToString();
}
return View();
}
および News.cshtml ビュー:
@ViewBag.Message.msg
@Html.Raw(read)
他のウェブサイトから特定のコンテンツを取得するために何か他のことを試みる必要がある場合でも、何かヒントはありますか?