在程序里调试时,点击"添加"按钮会跳出来一个新的页面,重新生成时直接打开http://localhost/xx,出现该页面,点击"添加"按钮没任何反应,这是为什么?
添加按扭的程序是
 Private Sub IMGAdd_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles IMGAdd.Click
        Page.RegisterClientScriptBlock("Add", "<script>window.open('test.aspx?Item_no=" + Me.txtItemNO.Text + "&User_id=" + Me.txtUserId.Value + "');</script>")
    End Sub