protected closeBtn As LinkButton
protected myLiteral As Literal
Sub closePage(sender As Object, e As EventArgs)
Dim strjs as string = "<script language=""javascript"">"
strjs &= "window.close()"
strjs &= "</script" & ">"
Literal1.Text = strjs
End Sub