You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.3 KiB
Plaintext
84 lines
2.3 KiB
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Web;
|
|
using BP.DA;
|
|
using BP.Difference;
|
|
using BP.Sys;
|
|
using BP.Web;
|
|
using BP.Port;
|
|
using BP.En;
|
|
using BP.WF;
|
|
using BP.WF.Template;
|
|
|
|
namespace BP.Cloud.HttpHandler
|
|
{
|
|
/// <summary>
|
|
/// 页面功能实体
|
|
/// </summary>
|
|
public class Portal_SaaS : BP.WF.HttpHandler.DirectoryPageBase
|
|
{
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public Portal_SaaS()
|
|
{
|
|
}
|
|
|
|
public string Login_Submit()
|
|
{
|
|
try
|
|
{
|
|
string orgNo = this.OrgNo;
|
|
string userNo = this.GetRequestVal("TB_No");
|
|
string pass = this.GetRequestVal("TB_PW");
|
|
if (pass == null)
|
|
pass = this.GetRequestVal("TB_Pass");
|
|
pass = pass.Trim();
|
|
BP.Port.Emp emp = new BP.Port.Emp();
|
|
emp.No = this.OrgNo + "_" + userNo;
|
|
if (emp.RetrieveFromDBSources() == 0)
|
|
return "err@用户名["+userNo+"]不存在.";
|
|
|
|
if (emp.CheckPass(pass) == false)
|
|
return "err@密码错误.";
|
|
|
|
BP.Cloud.Emp emp2 = new BP.Cloud.Emp(emp.No);
|
|
|
|
string token = BP.Cloud.Dev2Interface.Port_Login(emp2);
|
|
return "url@/Portal/Standard/Default.htm?Token=" + token + "&UserNo=" + emp.UserID + "&OrgNo=" + emp.OrgNo;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return "err@" + ex.Message;
|
|
}
|
|
}
|
|
|
|
|
|
#region 执行父类的重写方法.
|
|
/// <summary>
|
|
/// 默认执行的方法
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected override string DoDefaultMethod()
|
|
{
|
|
switch (this.DoType)
|
|
{
|
|
case "DtlFieldUp": //字段上移
|
|
return "执行成功.";
|
|
default:
|
|
break;
|
|
}
|
|
|
|
//找不不到标记就抛出异常.
|
|
throw new Exception("@标记[" + this.DoType + "],没有找到. @RowURL:" + HttpContextHelper.RequestRawUrl);
|
|
}
|
|
#endregion 执行父类的重写方法.
|
|
|
|
#region xxx 界面 .
|
|
#endregion xxx 界面方法.
|
|
|
|
}
|
|
}
|