VB.NET 中的用户控件

发布于 2024-10-20 06:07:07 字数 289 浏览 0 评论 0原文

我有一个超链接作为用户控件。当我单击它时,我需要打开一个新的弹出窗口。 我的代码如下:

CType(hypowner.FindControl("txtEmp"), HyperLink).NavigateUrl = "EmployeeDetails.aspx?empno=" + myPlant.OwnerID

这里,“hypowner”是我当前页面上的超链接。 “txtemp”是我的用户控件的超链接。以同样的方式,我必须对十个这样的控件进行操作。他们采用不同的查询字符串。 有人可以帮我解决这个问题吗?

谢谢。

I have a hyperlink as a user control. When I click it, I need to open a new popup window.
My code is like this:

CType(hypowner.FindControl("txtEmp"), HyperLink).NavigateUrl = "EmployeeDetails.aspx?empno=" + myPlant.OwnerID

Here, "hypowner" is the hyperlink on my current page. "txtemp" is the hyperlink from my user control. The same way, I got to do for ten such controls. They take different query strings.
Could someone help me with this please?

Thanks.

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

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

发布评论

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

评论(1

心清如水 2024-10-27 06:07:07

使用 window.open

<a href="javascript:;" onclick="javascript:window.open(...)">Text</a>

编辑

如果 href 已设置,您可以使用如下内容:

<a
    href="http://www.google.com/"
    onclick="javascript:window.open(this.href, ...);return false;"
>Text</a>

Use window.open

<a href="javascript:;" onclick="javascript:window.open(...)">Text</a>

Edit

If the href is already set, you can use something like this:

<a
    href="http://www.google.com/"
    onclick="javascript:window.open(this.href, ...);return false;"
>Text</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文