如何在按钮事件中打开带有参数(在按钮事件中计算)的弹出页面

发布于 2024-09-25 05:09:26 字数 190 浏览 8 评论 0原文

如何在按钮事件中打开带有参数(在按钮事件中计算)的弹出页面

ButtonClick()
{
    string id=TextBox.Text;
    /////HERE i want to open a popup as "Index.aspx?ID=id" ///////

}

请尽快回复

How to open a popup page that has parameters(calculated in button event) in button event

ButtonClick()
{
    string id=TextBox.Text;
    /////HERE i want to open a popup as "Index.aspx?ID=id" ///////

}

PLESE RESPOND SOON

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-10-02 05:09:26

您无法真正从代码隐藏打开普通的弹出窗口,您必须从客户端执行此操作。

因此,您可以创建一个使用 window.open 打开窗口的 Javascript 函数,接受一些参数,然后在代码隐藏中使用 ClientScriptManager.RegisterClientScriptBlock 来创建 JS 函数单击按钮后运行。

http://msdn.microsoft.com/en-us/library/bahh2fef.aspx

You can't really open a normal popup window from code-behind, you have to do it from the client-side.

So, you can make a Javascript function that opens the window with window.open, accepting some parameters, and then use in code-behind ClientScriptManager.RegisterClientScriptBlock to make the JS function run after your button click.

http://msdn.microsoft.com/en-us/library/bahh2fef.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文