hello,
I am using javascript function..in Asp.net C#
<style type="Text/javascript">
function countdown()
{
setTimeout('Decrement()', 1000);
}
</style> in head section.
I am want to call javascript function from code behind...
I am using this code but it is showing cannot convert void into string..
ClientScript.RegisterStartupScript(GetType(), "hwa", "<script type="text/javascript">countdown();</script>", true);
Please help me..