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