Krish Silva
Krish Silva

Reputation: 21

Is there a way to get the url (or site name) of an opened website in C#?

Is there a way to get the url (or site name) of an opened website in C#? I need to use this to monitor and log user activity on my silverlight application. Didn't come across any success with a 2 hour googling...

Upvotes: 2

Views: 275

Answers (1)

Igor Zevaka
Igor Zevaka

Reputation: 76510

HtmlPage.Document.DocumentUri.ToString()

Upvotes: 2

Related Questions