How to open aspx web pages on a pop up window

66,423

You can use ClientScript.RegisterStartupScript

In C#

protected void Button1_Click(object sender, EventArgs e)
{
    string queryString = "test.aspx" ;
    string newWin ="window.open('" + queryString + "');";
    ClientScript.RegisterStartupScript(this.GetType(), "pop", newWin, true);
}

In VB

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)

        Dim queryString As String = "test.aspx" 
        Dim newWin As String = "window.open('" & queryString & "');"
        ClientScript.RegisterStartupScript(Me.GetType(), "pop", newWin, True)

End Sub
Share:
66,423
phalanx
Author by

phalanx

Learning .NET and PL/SQL

Updated on October 28, 2020

Comments

  • phalanx
    phalanx over 3 years

    I'm trying to write a code to open an .aspx (in shape of a pop up window) after clicking a LinkButton on another .ASPX web page(using VB)

    Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs)      Handles LinkButton1.Click
    
        'What code?
    
    End Sub
    

    Not sure how to do it, I can't find a popup control or something similar.