Try this. I see noone answered your question yet so here's my shot.
create a form on the page and let's name it frm1.
onload in the body make a function similar to this.
function checkrefresh()
{
if(frm1.visited.value == '' || frm1.visited.value == null)
{
document.frm1.visited.value = "1";
}
else
{
document.getElementById('<%=ddlReportView.ClientId%>').selectedvalue='SNAPSHOT';
}
}
Let me know if this works.
Eric
2009-08-05 21:52:54