Search

Index

Revindex Task Scheduler

Web Get (Razor C#)

Last updated on 2015-04-17 1 mins. to read

Here's a simple Razor (C#) script to query any web site. Just change the URL below to your own site.

@{
  var client = new System.Net.WebClient();
  var html = client.DownloadString("http://www.myurl.com/");
}

Comments


Powered by Revindex Wiki