1

我在 LinkBut​​ton Click 事件中得到了这段代码

    Session("Factor") = Session("rating")       
    Response.Write("<script>")
    Response.Write("window.open('Resources/Resources.aspx','_blank')")
    Response.Write("</script>")

我需要在后面的代码中的原因是因为我必须设置那个会话。这将在新窗口中打开。但是我怎样才能让它在新标签页中打开呢?或任何替代方法。请记住我必须设置该会话。QueryString 对我不利。

谢谢,

4

1 回答 1

1

我知道这是一个旧帖子,但我仍然想与大家分享。

您可以从后面的代码中使用链接按钮的属性。像这样的东西。

在表单加载事件中添加此代码。

linkbutton.Attributes.Add("onclick", "window.open('http://localhost:50/mailconfirm.htm','NameOfTheWindow','height=400,width=400,status=yes,toolbar=no, menubar=no,location=0,scrollbars=no,left=200,top=200')")

于 2012-11-28T09:45:45.603 回答