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


C# Code.power_search_clinic_pageloaddata方法代码示例

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


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

示例1: power_search_clinic_pageloaddata

 public void power_search_clinic_pageloaddata()
 {
     Code cd=new Code();
     DataSet ds=cd.power_search_clinic_pageloaddata();
     if(ds!=null && ds.Tables[0].Rows.Count>0)
     {
         // Health center type name - Speciality table
         DropDownList1.DataTextField = ds.Tables[0].Columns["Name"].ToString();
         DropDownList1.DataValueField = ds.Tables[0].Columns["ID"].ToString();
         DropDownList1.DataSource = ds.Tables[0];
         DropDownList1.DataBind();
         DropDownList1.Items.Insert(0, "Any");
         // Specialists - Specifications table
         DropDownList6.DataTextField = ds.Tables[2].Columns["Name"].ToString();
         DropDownList6.DataValueField = ds.Tables[2].Columns["ID"].ToString();
         DropDownList6.DataSource = ds.Tables[2];
         DropDownList6.DataBind();
         DropDownList6.Items.Insert(0, "Any");
         // Service - Service table
         DropDownList7.DataTextField = ds.Tables[1].Columns["Name"].ToString();
         DropDownList7.DataValueField = ds.Tables[1].Columns["ID"].ToString();
         DropDownList7.DataSource = ds.Tables[1];
         DropDownList7.DataBind();
         DropDownList7.Items.Insert(0, "Any");
         // Clinic Name
         DropDownList2.DataTextField = ds.Tables[3].Columns["Name"].ToString();
         DropDownList2.DataValueField = ds.Tables[3].Columns["ID"].ToString();
         DropDownList2.DataSource = ds.Tables[3];
         DropDownList2.DataBind();
         DropDownList2.Items.Insert(0, "Any");
         // city
         DropDownList4.DataTextField = ds.Tables[4].Columns["Name"].ToString();
         DropDownList4.DataValueField = ds.Tables[4].Columns["ID"].ToString();
         DropDownList4.DataSource = ds.Tables[4];
         DropDownList4.DataBind();
         DropDownList4.Items.Insert(0, "Any");
     }
 }
开发者ID:adusumillipranavi,项目名称:Doctor-Project,代码行数:38,代码来源:Power_Search_Clinic.aspx.cs


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