⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 local.aspx

📁 asp.net1.1入门经典C#.2003
💻 ASPX
字号:
<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>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -