Modal pop-ups in ASP.

  • Thread starter Thread starter keiran
  • Start date Start date
K

keiran

Can anyone help me with this problem, i am using javascript to open a popup
in an ASP.net project. Trouble is i need to set the text of the title bar on
the popup as at the minute the text is just the name of the form with 'web
dialog' appended to the end of it.
 
keiran said:
Can anyone help me with this problem, i am using javascript to open a popup
in an ASP.net project. Trouble is i need to set the text of the title bar on
the popup as at the minute the text is just the name of the form with 'web
dialog' appended to the end of it.
The dialog title is set in the same way as a regular HTML page. You can
do it in the HTML markup with the TITLE element or in JavaScript code by
setting the document.title property.

Anders Norås
http://dotnetjunkies.com/weblog/anoras/
 
Back
Top