从代码隐藏中设置 LinkButton 的 onClientClick 上的 window.location
不会这么难吧?!我只想更改链接按钮的 window.location onclientclick 并从后面的代码中设置它。
lb.OnClientClick = "window.location = 'Contact.aspx'";
不起作用,只是重新加载当前页面。
lb.OnClientClick = "window.location = '" + Server.MapPath("Contact.aspx") + "'";
似乎正确解析了 url(我的 C 驱动器上的 dev 文件夹),但拒绝我访问!?
Can't be this hard can it!? I just want to change window.location onclientclick of a linkbutton and set this from code behind.
lb.OnClientClick = "window.location = 'Contact.aspx'";
Not working, just reloads the current page.
lb.OnClientClick = "window.location = '" + Server.MapPath("Contact.aspx") + "'";
Seems to resolve the url correctly (the dev folder on my C drive) but is denying me access!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何动态使用的示例:
这也应该有效
原始帖子:
如果它在后面的代码中,只需使用 Transfer
,这将传递所有表单信息:
MS 对所有选项也有很好的文档 此处
Example of how to use dynamically:
also this should work
Original post:
If it is in the code behind just use Transfer
and this will pass all the form information:
MS also has good documentation on all your options here