Button-click's client-side alert shows only once per page load, why?

G

gnewsgroup

I have a gridview, in which people can click on a delete button to try
to delete something from the database.

But, if that selected row cannot be deleted (because, for example, it
is referred to by some other table in the database), I show an alert
like

"An order is associated with this customer, and therefore it cannot be
deleted."

I did this in code-behind through

ScriptManager.RegisterClientScriptBlock(
this.Page,
this.GetType(), "customer_is_not_deleted",
"alert(\"An order is associated with this customer, and
therefore it cannot be deleted.\");",
true);

It works, but only once. Upon the second, 3rd, ..., click, the alert
does not pop up. It work once again if the page is reloaded.

I am using AJAX, I guess it has to do with AJAX. But any workaround if
I want to keep the AJAX?
 
B

bruce barker

if its an ajax postback, for the client script to be sent to the client and
eval'd, the control specified in RegisterClientScriptBlock must be one of the
active update panels or one of its children.

-- bruce (sqlwork.com)
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top