.列举ASP.NET 页面之间传递值的几种方式。 
答. 1).使用QueryString, 如....?id=1; response. Redirect().... 
                  2).使用Session变量 
                  3).使用Server.Transfer

3. 一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第30位数是多少, 用递归算法实现。
答:public class MainClass 
                  
                  public static void Main() 
                  
                  Console.WriteLine(Foo(30)); 
                  
                  public static int Foo(int i) 
                  
                  if (i <= 0) 
                  return 0; 
                 

相关文章:

  • 2022-02-08
  • 2021-09-19
  • 2021-09-19
  • 2022-03-05
  • 2022-01-23
猜你喜欢
  • 2022-12-23
  • 2021-09-19
  • 2021-07-30
  • 2021-12-13
相关资源
相似解决方案