<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
    <script language="javascript" type="text/javascript">
      function show(){
       document.getElementById("test").src="aa.aspx"; 
        alert(document.getElementById("test").src);
       
    }
function test_onclick() {}    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:button ID="a" runat="server"    OnClientClick="show()" />
    <iframe id="test" src="bb.aspx"  > </iframe>
     <a   target= "test "   href   = "aa.aspx"> aaaa </a>
    </div>
    </form>
</body>
</html>