how to open the crystal report in new window in asp.net.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sudagnr
    New Member
    • Feb 2008
    • 5

    how to open the crystal report in new window in asp.net.

    Hi,

    can any one post the code, to open the crystal report document in the new window of the browser in asp.net
  • shweta123
    Recognized Expert Contributor
    • Nov 2006
    • 692

    #2
    Hi,
    Please refer this code

    Dim strPop As String = "< s c r i p t language='javas cript'>" & vbCrLf _
    & "window.open('v iewpage.aspx',' Report');" & vbCrLf _
    & "< / s c r i p t >" & vbCrLf


    Page.RegisterSt artupScript("Po p", strPop)


    Originally posted by sudagnr
    Hi,

    can any one post the code, to open the crystal report document in the new window of the browser in asp.net

    Comment

    Working...