how to call javascript from asp .net c# script ?

  • Thread starter Thread starter lee
  • Start date Start date
L

lee

If a certain criteria happens with some data how do I show a
javascript message box to notify the user ?

I don't think I can use a validator control as it's not applicable.


<SCRIPT LANGUAGE="JavaScript">
function onClickJS()
{
window.confirm("data malformed");
}
</SCRIPT>


Thanks,
Hobnob.
 
Lee,

You may want to make the Body tag into a server control and attach the
javascript to that.

I have some sample code on my website, www.aboutfortunate.com, which will
show you how to do so. It's in VB, but it's very simple. You should be able
to port it over without a problem, but if you have questions feel free to
email me. Just search the code library on the site for: "use the body tag as
a server control" or something similar to that and it should pop up as the
first hit.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Back
Top