Is it possible to redirect to a different frame ? I tried using

Response.Redirect "somepage.htm; target=MainFrame"

but it didn't work

Hi,

you can use this Code

<% 
    url = "http://www.URL.com/Page.asp" 
    response.write("<script>" & vbCrLf) 
    response.write("parent.mainFrame.location.replace('" & url & "');") 
    response.write(vbCrLf & "</script>") 
%>

Rahul

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.