using System;
using BP.Difference;
namespace BP.WF.HttpHandler
{
///
/// 页面功能实体
///
public class CCMobile_RptSearch : DirectoryPageBase
{
#region 执行父类的重写方法.
///
/// 默认执行的方法
///
///
protected override string DoDefaultMethod()
{
switch (this.DoType)
{
case "DtlFieldUp": //字段上移
return "执行成功.";
default:
break;
}
//找不不到标记就抛出异常.
throw new Exception("@标记[" + this.DoType + "],没有找到. @RowURL:" + HttpContextHelper.RequestRawUrl);
}
#endregion 执行父类的重写方法.
///
/// 构造函数
///
public CCMobile_RptSearch()
{
BP.Web.WebUser.SheBei = "Mobile";
}
#region 关键字查询.
///
/// 执行查询
///
///
public string KeySearch_Query()
{
BP.WF.HttpHandler.WF_RptSearch search = new WF_RptSearch();
return search.KeySearch_Query();
}
#endregion 关键字查询.
}
}