How do I open a new web browser in code?newWindow=window.open('url here','nameofwindow',"width=500,height=525,scrollbars=yes")<BR><BR>This is javascript, though. You'll have to make this happen from a client-side event.Is there anyway to do it in VB.No, VB is executing on the server. Browser windows are controlled by the client. You can have serverside write the client-side code to pop up a windows based on a server side event, which usually works for most situations.