I have a popup window, which returns some values to a javascript function in the parent calling web page.
My JScript function is:
Code:
function SelectedVisitors(VisitorKeys)
{
    alert(VisitorKeys)
}
Where visitorkeys is like "34,6,234,1"

Basically I need to call a vb.net function is code behind to save these values to the DB, and then refresh the grid on that page too.

Woka