Parsing a String to System.Uri

  • Thread starter Thread starter James
  • Start date Start date
J

James

Hi everyone,

I'm making a simple fast loading web browser in C#. How to I make it so
you can type in a web address and click "Go" to...

private void btnGo_Click(event sender, EventArgs e)
{
wbrWebBrowser.Url = txtAddress.Text;
}

....it was the only way I could think of. Any ideas?

James
 
Back
Top