我正在设计一个ASP.Net聊天应用程序。我有一个在线用户列表,它是ListView中的LinkButtons。我想点击其中一个并打开一个弹出窗口。我怎么能这样做?
答案 0 :(得分:0)
设置LinkButtons,使其具有打开弹出窗口的onclick属性。
代码隐藏:
Dim username as String = "foo"
lnkbtn.Attributes.Add("onClick", "javascript:openWindow(" & username & ");return false;")
'The "return false" part is important - it stops the LinkButton from doing a postback.
客户端:
function openWindow(username) {
window.open(my_url + username); //Where my_url is the URL that you want to open.
}
username
就是如何将值传递给Javascript的示例。