Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrote a javascript with a asp.net page.

In Asp.net Page

<HTML> <HEAD>
     <script type="text/javascript">
      function Myfunction(){
          document.getElementId('MyText').value="hi";
      }
      </script>
</HEAD> <BODY>
<input type="text" id="MyText" runat="server" /> </BODY>

In Code-behind

 Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
  Handles Me.Load
       If Session("My")= "Hi" Then
          I want to call "Myfunction" javascript function
       End If 
 End Sub

How can I do?

share|improve this question
1  
possible duplicate of How to call javascript function from code-behind – outis Jan 31 '11 at 8:02
do you really want to call the function from the code-behind, or do you want function to run when the page load? I think it is the last alternative you want. – Tomas Jansson Jan 31 '11 at 8:07

4 Answers

One way of doing it is to use the ClientScriptManager:

Page.ClientScript.RegisterStartupScript(
    GetType(), 
    "MyKey", 
    "Myfunction();", 
    true);
share|improve this answer

There is a very simple way in which you can do this. It involves injecting a javascript code to a label control from code behind. here is sample code:

<head runat="server"> 
    <title>Calling javascript function from code behind example</title> 
        <script type="text/javascript"> 
            function showDialogue() { 
                alert("this dialogue has been invoked through codebehind."); 
            } 
        </script> 
</head>

..........

lblJavaScript.Text = "<script type='text/javascript'>showDialogue();</script>";

Check out the full code here: http://softmate-technologies.com/javascript-from-CodeBehind.htm

share|improve this answer

How to call javascript function from code-behind

Calling javascript from code behind

same question is asked...

share|improve this answer
question is same but condition is different. the surely, you see that – zanhtet Jan 31 '11 at 8:06
could be condition is different but the answers that are posted below,are the same answers that were posted in other posts... – programmer Jan 31 '11 at 8:11

There is no easy or fancy way that i know of to do this other than to add an ASP:Literal to the page and when your criteria are met then insert this into it:

<script type="text/javascript">
          document.getElementId('MyText').value="hi";
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.