本文整理汇总了C#中HyoaClass.Hyoa_tableconfig.GetMaxtableconfigsort方法的典型用法代码示例。如果您正苦于以下问题:C# HyoaClass.Hyoa_tableconfig.GetMaxtableconfigsort方法的具体用法?C# HyoaClass.Hyoa_tableconfig.GetMaxtableconfigsort怎么用?C# HyoaClass.Hyoa_tableconfig.GetMaxtableconfigsort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HyoaClass.Hyoa_tableconfig
的用法示例。
在下文中一共展示了HyoaClass.Hyoa_tableconfig.GetMaxtableconfigsort方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DataPlay
private void DataPlay()
{
//是否流程文档
this.ddlifflowdoc.Items.Insert(0, "否");
this.ddlifflowdoc.Items.Insert(1, "是");
//是否显示所有文档非流程
this.ddlifdisplayall.Items.Insert(0, "否");
this.ddlifdisplayall.Items.Insert(1, "是");
//是否进行评论
this.ddlifcomment.Items.Insert(0, "否");
this.ddlifcomment.Items.Insert(1, "是");
//主表单显示的列数
this.ddldisplaycol.Items.Insert(0, "4");
this.ddldisplaycol.Items.Insert(1, "6");
this.ddldisplaycol.Items.Insert(2, "8");
this.ddldisplaycol.Items.Insert(3, "10");
//只对流程模块起作用,流程完成后是否公开,是表示大家都能看,否表示不公开
this.ddlispuballByflowYB.Items.Insert(0, "否");
this.ddlispuballByflowYB.Items.Insert(1, "是");
//加载模块
HyoaClass.Hyoa_mudel Hyoa_mudel = new HyoaClass.Hyoa_mudel();
DataTable dtmudel = Hyoa_mudel.Getmudels();
if (dtmudel.Rows.Count > 0)
{
this.ddlmudelid.DataSource = dtmudel;
this.ddlmudelid.DataTextField = "hy_mudelname";
this.ddlmudelid.DataValueField = "hy_mudelid";
this.ddlmudelid.DataBind();
this.ddlmudelid.Items.Insert(0, "--请选择--");
this.ddlmudelid.SelectedIndex = 0;
}
if (this.Request.QueryString["op"] != null)
{
this.txtop.Value = this.Request.QueryString["op"].ToString(); //新增还是修改
//判断当前用户是否有保存的权限
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
if (Hyoa_global.isHaveRole("Role9999", this.Session["hyuid"].ToString()))
{
this.btn_submit.Visible = true; //保存
}
else
{
this.btn_submit.Visible = false; //保存
}
//旧文档
HyoaClass.Hyoa_tableconfig Hyoa_tableconfig = new HyoaClass.Hyoa_tableconfig();
if (this.Request.QueryString["op"] == "modify")
{
if (this.Request.QueryString["id"] != null)
{
//根据id得到信息
this.txtdocid.Text = this.Request.QueryString["id"].ToString();
this.txtdocid.Enabled = false;
DataTable dt = Hyoa_tableconfig.GetTable(this.txtdocid.Text);
if (dt.Rows.Count > 0)
{
this.ddlmudelid.SelectedValue = dt.Rows[0]["hy_mudelid"].ToString();
this.txtname.Value = dt.Rows[0]["hy_name"].ToString();
this.txtsort.Value = dt.Rows[0]["hy_sort"].ToString();
this.ddlifflowdoc.SelectedValue = dt.Rows[0]["hy_ifflowdoc"].ToString();
this.ddlifdisplayall.SelectedValue = dt.Rows[0]["hy_ifdisplayall"].ToString();
this.ddlifcomment.SelectedValue = dt.Rows[0]["hy_ifcomment"].ToString();
this.ddlispuballByflowYB.SelectedValue = dt.Rows[0]["hy_ispuballByflowYB"].ToString();
this.txthy_onload.Text = dt.Rows[0]["hy_onload"].ToString();
this.ddltablerole.SelectedValue = dt.Rows[0]["hy_tablerole"].ToString();
this.ddldisplaycol.SelectedValue = dt.Rows[0]["hy_colnum"].ToString();
}
}
}
else
{
this.txtdocid.Text = "Table";
//自动获取最大排序号,然后+2
DataTable dt_maxsort = Hyoa_tableconfig.GetMaxtableconfigsort();
if (dt_maxsort.Rows.Count > 0)
txtsort.Value = (int.Parse(dt_maxsort.Rows[0]["hy_sort"].ToString()) + 2).ToString();
else
txtsort.Value = "1";
}
}
}