I have written VB.NET code for calling my Javascript function showDisplay()
.
vb.net code:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, GetType(Page), "Script", "showDisplay();", True)
javascript code:
function showDisplay(){
alert('success');}
but this is not working, can you help?