I’m assigning a JS function to OnClientClick property of a TabContainer like this
TabContainer1.Tabs[0].OnClientClick="JSTest"
I would like to know how I can pass a parameter to this function JSTest. I tried this
TabContainer1.Tabs[0].OnClientClick="JSTest('1');"
but this doesn’t work. It would be great if you could help me with this.
Thanks in advance.
In Code behind File
in .js file…