I keep getting a 403 error when i run this code has anyone got an idea how I can fix this I tried some of the other fixes posted to this site but they didn't seem to work any help would be appreciated
using System;
using System.Net;
namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
using (WebClient client = new WebClient())
{
Console.WriteLine(client.DownloadString("http://www.bom.gov.au/vic/forecasts/ballarat.shtml"));
}
}
}
}