Hi:
Im developing a web based application using
VB.NET. I'm trying to insert a confirmatin message when a user tries to delets a record. I use Java script for that.
<script language="javascript">
function confirm_delete()
{
if (alert("Are you sure you want to delete this item?")==true)
return true;
else
return false;
}
I tried the above code but i get this message: "It is invalid to show a modal dialog or form when the application is not running in UserInteractive mode. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application". Please advise.