I have a label as follows:
<asp:Label id="lbl1" runat="server" />
and
protected void Page_Load(object sender, EventArgs e){
lbl1.Attributes["onclick"] = "javascript:window.open('http://www.microsoft.com','name', 'width=500,height=500,resizable=0')";
So, I'm wondering if the portion "var w" is needed?!?
}
|