N
Nuno Esculcas
Hello,
Is there any way to call a javascript function in the server side?
Like this
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("All ok!!")
}
</script>
</head>
....
And in the server:
function OnHandling()
{
... some code
call the disp_alert();
... more code
}
I need this to call a message box to warn the user for something or
even to confirm something... if this is not possible is there any web
control that looks like a messagebox, and it can do things like the
confirm("...") function in javascript?
Thanks
Nuno
Is there any way to call a javascript function in the server side?
Like this
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("All ok!!")
}
</script>
</head>
....
And in the server:
function OnHandling()
{
... some code
call the disp_alert();
... more code
}
I need this to call a message box to warn the user for something or
even to confirm something... if this is not possible is there any web
control that looks like a messagebox, and it can do things like the
confirm("...") function in javascript?
Thanks
Nuno