正在阅读:使用webservice解决多系统登陆问题使用webservice解决多系统登陆问题

2004-05-24 10:18 出处:CSDN 作者:feic 责任编辑:linjixiong
   
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if(disposing && components != null)
   {
    components.Dispose();
   }
   base.Dispose(disposing); 
  } 
  #endregion

  [WebMethod(EnableSession=true)]
  public bool LoginMethod(string userName,string password)
  {
      if(userName == "admin" & password== "admin")
      {
       Session["userName"] = "admin"

       return true;     

      }

      return false;
 }
  }}

  再建一个新web项目,WebProject1

  添加Login的web引用,并在webForm1中调用LoginMethod,如果返回值为true重定向到project1的WebForm1.aspx

  这里需要注意两点

  一:在webService的特性里面需要加入(EnableSession=true)的描述

  二:如果你是现在已经有的web项目将不允许你向其中添加新的webservice,这时候你要先在其它位置建立一个webservie文件,然后在你的项目里面添加这个现有文件就可以了。
 


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:
键盘也能翻页,试试“← →”键

相关文章

关注我们

最新资讯离线随时看 聊天吐槽赢奖品