防止超链接控件重新排序 navigatorurl 属性
我创建了一个从 HyperLink 扩展的超链接控件,但我不知道如何覆盖 navigatorurl 属性,问题是:我使用依赖于 url 的 jquery 库,它看起来像
#TB_inline?height=285&width=510&inlineId=contactUsContent
.net 的问题在于它将其重新排序为:
../controls/?height=285&width=510&inlineId=contactUsContent#TB_inline
我怎样才能强迫它接受我的字符串?
I created a hyperlink control extended from HyperLink, but I do not know how to override the navigateurl property, the problem is: im using a jquery library that depends on the url to look like this
#TB_inline?height=285&width=510&inlineId=contactUsContent
problem with .net is that it reorders this into:
../controls/?height=285&width=510&inlineId=contactUsContent#TB_inline
how can i force it to accept my string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我问这个问题太仓促了,简单的解决方案是欺骗超链接使其成为绝对网址而不是相对网址,所以我所要做的就是在网址开头插入一个“/”,
愚蠢的我!
i think i was too hasty to ask this question, the simple solution was to decieve the hyperlink into making it an absolute url instead of relative, so all i had to do is insert a "/" at the beginning of the url
silly me!