Is it possible to add a dynamic banner field, within a compiled application, that pulls an image and hyperlink from a database on a cloud server somewhere?
I currently have a static banner in my app - using the following code, but I would like to be able to change that at a server somewhere rather than having to create an auto-update for a new sponsor.
private void BannerAd_Click(object sender, EventArgs e)
{
Process.Start("http://www.DatabaseLinkToSponseredAdvertiserLinkGoesHere");
}