简单问题
Response.Write( " <script> return alert( '成功 ') </script> ")
Response.Redirect( "nothouseadd.aspx ")
怎样才能出现成功,按确定后才跳到nothouseadd.aspx页面
[解决办法]
Response.Write( " <script> alert( '成功 ');window.location= 'nothouseadd.aspx '; </script> ")