I have an aspx page that has a print button on it. The code for the
clicked event of the print button is:
Dim strScript As String
strScript = "<script language='javascript'>"
strScript += "window.print;"
strScript += "</script>"
Page.RegisterStartUpScript("pirnt", strScript)
The aspx page above is opened using the following code from another
aspx page:
strScript = "var windowOptions = 'dialogHeight: 400px; dialogWidth:
600px;
center: yes; help: no; resizable: no; status: no;'; "
strScript += "window.showModalDialog(Page1.aspx, null,
windowOptions);"
Page.RegisterStartUpScript("SucessScript", "<script
language='javascript'>" + strScript + "</script>")
When compiled and ran locally, the print button will envoke the Print
dialog. If I compile the same code and run it from my server the
button does nothing. Anyone know why and what I can do to fix this?
It works in both places when it is not a modal dialog.