将 ID 参数传递给 aspx 模式窗口

发布于 2024-12-10 09:01:29 字数 272 浏览 3 评论 0原文

我有一个中继器控件,其中包含一个超链接,用户单击该超链接即可启动自定义 aspx 模式窗口。超链接包含“记录 ID”值。

用户单击超链接,代码从代码隐藏传递到 javascript,从而启动自定义 aspx 窗口。

如何从 javascript 函数传递记录 id 参数,以便正在启动的 aspx 模式窗口可以检索它,并使用该值运行 sql 查询。

我愿意创建一个会话值、一个隐藏的 html 控件(我尝试了隐藏控件,但无法传递该值)或任何其他选项。

有什么建议吗?

I have a repeater control that contains a hyperlink which the user will click to launch a custom aspx modal window. The hyperlink contains the "record id" value.

The user clicks the hyperlink, the code passes from code behind to javascript, which launches the custom aspx window.

How do I pass the record id parameter from javascript function so that the aspx modal window being launched can retreieve it, and run a sql query with that value.

I am open to creating a session value, a hidden html control (I tried the hidden control, but was not able to pass the value) or any other options.

Any suggestions?

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

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

发布评论

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

评论(1

梦回旧景 2024-12-17 09:01:29

根据您所写的内容,最明显的解决方案是将 ID 作为地址的一部分传递。喜欢:

<ItemTemplate>
   <a href="javascript:ChildWindowUrl?ID=<'%# ((MyEntityType)Container.DataItem).ID %'> >child window</a>
</ItemTemplate>

From what you write, the most obvious solution would be to pass the ID as the part of the address. Like:

<ItemTemplate>
   <a href="javascript:ChildWindowUrl?ID=<'%# ((MyEntityType)Container.DataItem).ID %'> >child window</a>
</ItemTemplate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文