Frame Navigation
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I have this code: Response.Redirect("EmployeeList.aspx?us=" + inLogUs + "&id=" +inLogId); Response.Write("window.open('EmployeeList.aspx','plain.aspx');"); Which is linked to a "Link Button" Control. My goal is to send the variables id and us to the EmployeeList.aspx and at the same time make it open in a different frame. This code is not giving the required result... I can send the variables id and us to the page but it opens in the same frame. My index.asp page contain two frames and I want a display on the plain frame upon clicking each link..