I have an Enable.js
file that has an Enable()
function. I want to call this Enable
function from the C# codebehind. My .js
file and c# file are in same application.
I have tried this, but it doesn't help me.
Page.ClientScript.RegisterStartupScript(this.GetType(), "click", "Enable(true)", true);