This topic is locked
[SOLVED]

 Alert Box

9/3/2010 2:53:49 PM
ASPRunnerPro General questions
J
Jay123 author

Hi!
I would like to ask how to change the size (particularly the width) of an alert box. If it's not possible, how can I break 2 sentences? I would like have the second sentence below the first one.
The code that I have is this.

=======================================================================

Flush_output

Response.Write "<script>alert('Thank you for your interest in attending these sessions. Pls. note that these are available only for these group of employees.')</script>"

=======================================================================
If I can't adjust the size of the alert box, I want the sentences to appear it like:

****

Thank you for your interest in attending these sessions.

Pls. note that these are available only for these group of employees.

****
Thanks,

Jay

Sergey Kornilov admin 9/3/2010

Try the following:

Response.Write "<script>alert('Thank you for your interest in attending these sessions. \nPls. note that these are available only for these group of employees.')</script>"
J
Jay123 author 9/7/2010

Thanks, Sergey. It worked!