Apparently you can call a JS script from Silverlight using
HtmlPage.Window.CreateInstance
or
HtmlPage.Window.Invoke
The JavaScript to refresh a page is
location.reload(true)
I'm not a Silverlight or JavaScript expert though, so not sure if it works in all browsers, or even at all.
EDIT:
Scott posted a comment to this answer with his final solution.
He needed to create a JavaScript client function on the ASP.Net page called reload() that did the location.reload(true). Then it was a simple matter from his C# code to reload:
HtmlPage.Window.Invoke("reload");
