5
Reply

Invoking the JavaScript Function from server side

Hari Shanker

Hari Shanker

Mar 21 2016 8:45 AM
321
Hi Everyone,
 
 
I want to call the Java Script function in code behind from the page load of master page .
function MyFunction() {
var hiddenvalue = document.getElementById('sometext').value;
if (hiddenvalue == 'Hindi') {
document.getElementById("someid").innerText = "HindiText";
else
{
 //english text
and in the body i have called the onloadevent(<body onload="MyFunction">
 
but the problem is when i am invoking the above function from code behind the text is not changing 
  ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "MyFunction", "MyFunction();", true);
 
Thanks,
Hari 
 
 

Answers (5)