Popup in codebehind

  • Thread starter Thread starter Ingeborg
  • Start date Start date
I

Ingeborg

Hi.

Is it possible to create a popup window (or something
similar) from codebehind?

Like after pressing a button and if som conditions is true?

Thanks in advance.

Ingeborg
 
You could do something like:
If MyCondition = True then
Page.RegisterClientScriptBlock("script", MyScript)
End If

MyScript is a string that contains your javascript to open the window
 
Back
Top