如何在按钮事件中打开带有参数(在按钮事件中计算)的弹出页面
如何在按钮事件中打开带有参数(在按钮事件中计算)的弹出页面
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法真正从代码隐藏打开普通的弹出窗口,您必须从客户端执行此操作。
因此,您可以创建一个使用
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-behindClientScriptManager.RegisterClientScriptBlock
to make the JS function run after your button click.http://msdn.microsoft.com/en-us/library/bahh2fef.aspx