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(
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
5 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Dorababu MekaPosted Mar 21, 2016, 9:30 AM
Dorababu MekaPosted Mar 21, 2016, 9:38 AM
Hari ShankerPosted Mar 21, 2016, 9:36 AM
Joginder BangerPosted Mar 21, 2016, 9:20 AM
Dorababu MekaPosted Mar 21, 2016, 9:20 AM