zoukankan      html  css  js  c++  java
  • 如何将sharepoint列表中choice类型的值绑定到dropdownlist上

      using (SPSite site=new SPSite(siteurl))
                {
                    using(SPWeb web=site.OpenWeb())
                    {
                        try
                        {
                            SPList list = web.Lists["ServiecesInfo"];
                            SPFieldChoice spcustomerlocation = new SPFieldChoice(list.Fields, "CustomerLocation");
                             for (int i = 0; i < spcustomerlocation.Choices.Count; i++)
                            {
                                ddlCustomLocation.Items.Add(new ListItem(spcustomerlocation.Choices[i].ToString(), i.ToString()));
                            }             
                        }
                        catch (Exception ex)
                        {
                            throw new Exception(ex.Message);
                        }
                    }
                }
  • 相关阅读:
    temp12
    temp111
    test.c
    vipLogin.c
    services.c
    request.c
    managerLogin.c
    将博客搬至CSDN
    SpringMabatis整合项目mybatis-configuration.xml核心配置
    logback-test.xml配置文件模板
  • 原文地址:https://www.cnblogs.com/KingStar/p/1582727.html
Copyright © 2011-2022 走看看