Ask a Question related to ASP.NET General, Design and Development.
-
lee #1
how to call javascript from asp .net c# script ?
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 Guest
-
Can I call extenal API in Acrobat javascript?
I have some methods in a dll. Can I call it somehow in in Acrobat javascript? -
Local javascript call
I'm working on a tutorial project for a client that wants to be able to run the app from a CD or from a web site. I need the app to do two things... -
another javascript call issue
I have a very simple javascript open window function that I've been using both in flash and html for some time. It works fine if I publish to flash... -
How to call javascript or action script from CFTREE?
have a very simple and stupid question to ask. Can I call Javascrip from the onchnage in CFTREE tag? Or I have to use Action Script in the... -
call javascript function after validation
When the user clicks a button on my page, a server side operation starts which takes several seconds to complete. To make the user less impatient I... -
S. Justin Gengo #2
Re: how to call javascript from asp .net c# script ?
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, [url]www.aboutfortunate.com[/url], 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:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"lee" <iammrproblem@yahoo.com> wrote in message
news:a971caf8.0308050656.6d485b8d@posting.google.c om...> 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.
S. Justin Gengo Guest



Reply With Quote

