当前位置: 首页>>代码示例>>C#>>正文


C# HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid方法代码示例

本文整理汇总了C#中HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid方法的典型用法代码示例。如果您正苦于以下问题:C# HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid方法的具体用法?C# HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid怎么用?C# HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HyoaClass.Hyoa_tableconfig的用法示例。


在下文中一共展示了HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Hy_Rightlink

    //右侧默认页面
    public string Hy_Rightlink()
    {
        string ls_retrun = "";
        if (this.Request.QueryString["mid"] != null)
        {
            if (this.Request.QueryString["mid"].ToString() == "dbsy")
            {
                ls_retrun = "/system/list_dbsy.aspx";

            }
            if (this.Request.QueryString["mid"].ToString() == "mail")
            {
                ls_retrun = "/system/list_mail_sjx.aspx";

            }
            if (this.Request.QueryString["mid"].ToString() == "rwdb")
            {
                ls_retrun = "/list_rwdb_qc.aspx?mid=rwdb&tableid=81176f65-d959-4fb9-a313-174f82cdc227";

            }
            if (this.Request.QueryString["mid"].ToString() == "zsgl")
            {
                ls_retrun = "/list.aspx?mid=zsgl&tableid=4682e856-efa0-447b-8180-59602f042f42";

            }
            if (this.Request.QueryString["mid"].ToString() == "ldrcap")
            {
                ls_retrun = "/ldrcap/list_ldrcap.aspx";

            }
            if (this.Request.QueryString["mid"].ToString() == "dxx")
            {
                ls_retrun = "/system/list_sms_df.aspx?mid=dxx";
            }
            if (this.Request.QueryString["mid"].ToString() == "xtsz")
            {
                ls_retrun = "/system/list_mudel.aspx?mid=&tableid=";
            }
            if (this.Request.QueryString["mid"].ToString() == "rsgl")
            {
                ls_retrun = "/rsgl/list.aspx?mid=" + this.Request.QueryString["mid"].ToString();
                ls_retrun += "&tableid=6047076e-6a95-4fb8-aec8-5551d3900590";
            }
            if (this.Request.QueryString["mid"].ToString() == "tzgg")
            {
                ls_retrun = "/tzgg/list.aspx?mid=" + this.Request.QueryString["mid"].ToString();
                HyoaClass.Hyoa_tableconfig Hyoa_tableconfig = new HyoaClass.Hyoa_tableconfig();
                DataTable dt = Hyoa_tableconfig.Getflowtablebymudelid(this.Request.QueryString["mid"].ToString());
                if (dt.Rows.Count > 0)
                    ls_retrun += "&tableid=" + dt.Rows[0]["ID"].ToString();
            }

            //投票管理
            if (this.Request.QueryString["mid"].ToString() == "moduletpgl")
            {
                ls_retrun = "/tpgl/list_tpgl_wytp.aspx";

            }
            ////群教专利
            //if (this.Request.QueryString["mid"].ToString() == "moduleqjzl")
            //{
            //    ls_retrun = "/list_tpgl_wytp.aspx";

            //}
            ////党建工作
            //if (this.Request.QueryString["mid"].ToString() == "moduletpgl")
            //{
            //    ls_retrun = "/tpgl/list_tpgl_wytp.aspx";

            //}
            if (ls_retrun == "")
            {
                ls_retrun = "/list.aspx?mid=" + this.Request.QueryString["mid"].ToString();
                //得到当前模块的第一张表ID
                HyoaClass.Hyoa_tableconfig Hyoa_tableconfig = new HyoaClass.Hyoa_tableconfig();
                DataTable dt = Hyoa_tableconfig.GetTablesbymudelid(this.Request.QueryString["mid"].ToString());
                if (dt.Rows.Count > 0)
                    ls_retrun += "&tableid=" + dt.Rows[0]["ID"].ToString();
            }
        }
        else
        {
            ls_retrun = "/index_right.aspx";
        }
        return ls_retrun;
    }
开发者ID:wjszxli,项目名称:Webapp,代码行数:87,代码来源:Hy_Frame.aspx.cs


注:本文中的HyoaClass.Hyoa_tableconfig.Getflowtablebymudelid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。