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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top