VB.NET cannot close the browser. A JavaScript function call would need to do that.
With an HTML button:
<input type="button" onclick="window.close();" value="Close" />
With an ASP:Button:
<asp:button id="closeButton" runat="server" text="Close" OnClientClick="window.close(); return false;"></asp:button>
NC...