void BindInfo()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.WFList))
        {
            txtAbout.Text = fi.WFList;
        }
    }
    void BindInfo()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.HonerUser))
        {
            txtAbout.Text = fi.HonerUser;
        }
    }
Exemplo n.º 3
0
    void BindInfo()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.RightNotice))
        {
            txtAbout.Text = fi.RightNotice;
        }
    }
    void BindInfo()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.ContactInfo))
        {
            txtAbout.Text = fi.ContactInfo;
        }
    }
    void BindInfos()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.RightNotice))
        {
            ltAbout.Text = fi.RightNotice;
        }
        else
        {
            ltAbout.Text = "暂无介绍。";
        }
    }
    void BindInfos()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.AbouteHuaho))
        {
            ltAbout.Text = fi.AbouteHuaho;
        }
        else
        {
            ltAbout.Text = "暂无介绍。";
        }
    }
    void BindInfos()
    {
        FooterInfo fi = FooterInfos.FooterInfoGet();

        if (fi != null && !string.IsNullOrEmpty(fi.Recruitment))
        {
            ltAbout.Text = fi.Recruitment;
        }
        else
        {
            ltAbout.Text = "暂无招聘信息。";
        }
    }
 protected void btnSave_Click(object sender, EventArgs e)
 {
     FooterInfos.FooterInfoUpdate(FooterUpdateAction.WFList, txtAbout.Text.Trim());
     BindInfo();
 }