Function local variable (C#) : Function « Language Basics « ASP.Net






Function local variable (C#)

<script Language="c#" runat="server">
  void Page_Load()
  {
    message1.Text="";
    message1.Text+="<BR />Calling Function 1...";
    Function1();
    message1.Text+="<BR />Calling Function 2...";
    Function2();
    message1.Text+="<BR />Calling Function 1...";
    Function1();
  }
  void Function1()
  {
    string Different = 
                "<i>Hello I'm the variable Different in Function 1</i>";
    message1.Text+= Different;
  }
  void Function2()
  {
    string Different = 
                "<b>Hello I'm the variable Different in Function 2</b>";
    message1.Text+= Different;
  }
</script>
<html>
<head>
<title>Scope</title>
</head>
<body>
<asp:label id="message1" runat="server"/>
</body>
</html>

           
       








Related examples in the same category

1.Define and call function in a page (VB.net)
2.Page level procedure (VB.net)
3.Define function to change 'HR' length (C#)
4.Function Parameter passed by Reference (C#)
5.Function Parameter passed by Value (C#)
6.Using out Parameters (C#)
7.Simple function without parameters (C#)
8.Define and call function (C#)
9.Call function (C#)