Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 asp.net 中创建一个用户正在注册并生成新员工 ID 的页面。我需要使用弹出窗口显示新生成的 id,并使用response.redirect(). 在这种情况下,javascript 不起作用。
response.redirect()
我不允许使用 ajax。
工作代码..
Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "showpopup();", true);
其中 showpopup(); 是一个javascript函数..
脚本:
function showpopup() { $("#popup").fadeIn('slow'); }
其中 popup 是您要显示为弹出窗口的 div 的 ID。您可以根据您的要求设计一个 div ..