.aspx页未在GB_SHOWCENTER内部关闭

时间:2018-11-21 17:11:12

标签: javascript asp.net greybox

我需要帮助,我在js中有以下功能

function myFunction(isValid, firstName, lastName) {
if (isValid) {
    //alert("True: "+ isValid);
    GB_showCenter("ID Saved", "/confirm-valid-id-number.aspx?valid=true&firstName=" + firstName + "&lastName=" + lastName, 500, 900, getResults(firstName, lastName));
} else {
    //alert("False: " + isValid);
    GB_showCenter("Enter ID Number", "/validate-member-id.aspx?valid=false", 500, 900);
}

}

单击asp页面中的按钮时调用的

。该函数由服务器端代码调用,以检查所提供的ID号是否有效,如果无效,则将我的.aspx页加载到GB_showCenter以重新获取ID。

我的问题是:

  1. 以编程方式关闭GB_showCenter时(不是通过右上角的关闭按钮),它不会关闭。
  2. 当我提供有效的ID时,GB_showCenter不会加载其他.aspx页面
  3. 如何从url获取参数,以便可以在服务器端使用它们。

谢谢

0 个答案:

没有答案