ASP.NET从CodeBehind中的浏览器中打开新选项卡
我需要从 asp.net 代码后面提供给我的链接打开浏览器选项卡。 通常我会有一个链接和 target="_blank"
,但我需要的链接是动态的,所以我必须在代码后面具有 _blank
链接的行为。
有什么想法吗?
I need to open a browser tab from a link that is given to me by an asp.net code behind.
Normally I would have a link and target="_blank"
, but the link that I need is dynamic, so I must have the behavior of a _blank
link from code behind.
Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在生成初始HTML时需要创建链接所需的数据,则可以在page_load事件中执行类似的操作:
如果您正在等待寄回以获取所需的数据来构建链接,则可以向下发送JavaScript通过 ScriptManager 到浏览器:
If you have the data needed to create the link when generating the initial HTML, you can do something like this in the Page_Load event:
If you're waiting for the PostBack to get the required data to build the link, you can send javascript down to the browser via the ScriptManager:
您正在寻找
目标
属性。You're looking for the
Target
property.