将数据从父页面传递到弹出窗口
我有一个 asp.net 页面,它在另一个浏览器窗口中启动一个子页面,看起来像一个弹出窗口。 我想从父页面传递2条数据给它。 我知道 javascript 可以实现,但是有没有办法使用 C# 来实现呢?
再次感谢
I have an asp.net page which launches a child page in another browser window to look like a popup.
I want to pass 2 pieces of data to it from the parent page.
I know ots possible with javascript, but is there a way to do it using C#?
thanks again
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果数据不太大(就实际值而言),您可以简单地将其作为参数添加到 URL(例如
Popup.aspx?Data1=Piece_of_data&Data2=Piece_of_data
)。否则你可能想对 POST 请求做同样的事情,这取决于你打开弹出窗口的方式;)
Provided that the data is not too big (in sense of actual values) you can simply add it as a parameter to the URL (like
Popup.aspx?Data1=Piece_of_data&Data2=Piece_of_data
).Otherwise you'd probably want to do the same thing with POST request, it depends on how exactly you are opening the popup ;)