Hi,
I am using asp:hyperlink button to open a Terms and Condition pop up window. Code for the hyperlink is -
<asp:HyperLink ID="HyperLink4" Target="_blank"
NavigateUrl="javascript:window.open('test.aspx');"
ForeColor="#F58022" runat="server">Terms and Conditions</asp:HyperLink>
When i click this Url in browser then it opens up my test.aspx page But along with test.aspx; it opens up another page and the url of page is - "javascript:window.open('test.aspx');" On the body of this unwanted page - [object].
Can you please suggest me how to get rid of this unwanted page.
Thanks