vote up 2 vote down star

I have the following statement:

btnApply.Attributes.Add("onclick", "alert('Must be a member to Use this Tool')");

Is there a way to add a new line. I tried, but it showed the in the text. In addition, can I add a link that would close the alert and take the user to another page?

How can I do this with my example?

When I added the \n, the alert doesn't show up.

flag

67% accept rate

7 Answers

vote up 11 vote down check

You can't use HTML, but you can add line breaks:

alert('line1\nline2');

If a rich modal popup is really what you want though, you can use jQuery's dialog feature and put whatever you want in there.

link|flag
Does the JQuery dialog accept asp.net? – Xaisoft Feb 26 at 15:57
Not sure what you mean... jQuery is 100% clientside - so you can generate the content using ASP.NET and wrap the jQuery around it, if that's what you mean. – Daniel Schaffer Feb 26 at 15:58
I meant, put c# code in there like a control. – Xaisoft Feb 26 at 16:00
Not C#, but JavaScript. – gs Feb 26 at 16:17
I'm suspecting a fundamental misunderstanding of client-side code vs server-side code here... – Daniel Schaffer Feb 26 at 16:19
show 3 more comments
vote up 2 vote down

You cannot allow links but you can have newlines.

Just use "\n" for a newline instead of <br/>.

link|flag
vote up 1 vote down

Javascript has a specific AlertDialog that it opens when you you call alert('') and treats the entire body as text - far as I know there is no way of adding HTML to the displayed dialog.

I'd recommend using a Javascript library that supports a customizable dialog box or modal box like this Modal Box to get your desired behavior (and it will look better)

link|flag
vote up 1 vote down

You can't use markup in a javascript alert. However, you can achieve line breaks using "\n"

link|flag
vote up 1 vote down

Alert is a fairly crude tool (and looks it too). Perhaps it's time to look at doing this in a more web friendly way...

Create a hidden message div on your page and instead of executing the alert, populate it with some message mark-up (including an anchor link if you wish) and reveal it to the user instead. You can add all kinds of nice visual tricks to this including fading in/out, centring, layering a semi-opaque background, etc, etc..

edit: jQuery dialog (as mentioned by others) is a nice way to handle this, most libraries will have some widget or another to do similar.

link|flag
vote up 1 vote down

Short answer: you can't. Javascript dialogs are basic.

You can use VBScript's MsgBox method to create a custom dialog box but that'll only work on Internet Explorer with VBScript turned on. Not cross-platform; not recommended.

The alternative is to fake it in HTML, which a large number of Javascript libraries provide built-in functionality for.

link|flag
vote up 0 vote down

No, alert() only allows plain text. So \n is a line break.

link|flag
If I created an html page and I wanted to open that in the onclick event, how could I do that (what javascript function)? – Xaisoft Feb 26 at 15:54
window.open() - Look it up, it has many configurable parameters. – Cerebrus Feb 26 at 15:59
@Cerebrus, thanks! I didn't thought of that one! +1 for you :) – Cshift3iLike Feb 26 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.