Below is my JavaScript Function
function HighlightWord(highlightword) {
alert(highlightword);
}
When I pass value to above function using below code
Page.ClientScript.RegisterStartupScript(this.GetType(), "onload", "HighlightWord(abc)", true);
alert displays 'undefined'. What is wrong in this? Thanks.