Hi,
I am developing a BSp application. the scenario goes likes this.
i have a button (submit) on clicking this the event is handled in OnInputProcessing() where in a page attribute entry is filled with a value. am passing this attribute like this
<htmlb:button id = "Submit"
text = "Submit"
onClientClick = "onSubmit(<%= entry %>)"
design = "EMPHASIZED"/>
and the function is written is:
function onSubmit(mess)
{
alert(mess);
}
am running this application in portal. On clicking the button i get nothing , the values is undefined. Let me know wats wrong here
Thanks in advance,
Shailaja