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


C# Code.View_Clinicddetails方法代码示例

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


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

示例1: viewclinicdata

 public void viewclinicdata()
 {
     Code cd = new Code();
     if (Request.QueryString["Clinic"] != null)
     {
         cd.id = Request.QueryString["Clinic"].ToString();
         DataSet ds = cd.View_Clinicddetails();
         if (ds != null && ds.Tables[0].Rows.Count > 0)
         {
             DropDownList1.SelectedValue = ds.Tables[0].Rows[0]["Speciality"].ToString();
             txtname.Value = ds.Tables[0].Rows[0]["Clinicname"].ToString();
             Text1.Value = ds.Tables[0].Rows[0]["Timings"].ToString();
             specialists.Value = ds.Tables[0].Rows[0]["Specialists"].ToString();
             Services.Value = ds.Tables[0].Rows[0]["Services"].ToString();
             insurance.Value = ds.Tables[0].Rows[0]["Insurance"].ToString();
             Text2.Value = ds.Tables[0].Rows[0]["Noofdoctors"].ToString();
             DropDownList2.SelectedValue = ds.Tables[0].Rows[0]["City"].ToString();
             cd.city = ds.Tables[0].Rows[0]["City"].ToString();
             DataSet ds1 = cd.viewlocations();
             if (ds1 != null && ds1.Tables[0].Rows.Count > 0)
             {
                 DropDownList3.DataTextField = "Name";
                 DropDownList3.DataValueField = "ID";
                 DropDownList3.DataSource = ds1;
                 DropDownList3.DataBind();
             }
             DropDownList3.SelectedValue = ds.Tables[0].Rows[0]["Location"].ToString();
             Text3.Value = ds.Tables[0].Rows[0]["Address"].ToString();
             Text4.Value = ds.Tables[0].Rows[0]["contact1"].ToString();
             Text5.Value = ds.Tables[0].Rows[0]["contact2"].ToString();
             Text6.Value = ds.Tables[0].Rows[0]["contact3"].ToString();
             Text7.Value = ds.Tables[0].Rows[0]["contact4"].ToString();
             Text8.Value = ds.Tables[0].Rows[0]["Emailid"].ToString();
             Text10.Value = ds.Tables[0].Rows[0]["Website"].ToString();
             Text13.Value = ds.Tables[0].Rows[0]["Establishedby"].ToString();
             Text14.Value = ds.Tables[0].Rows[0]["Establishedon"].ToString();
             TextArea1.Value = ds.Tables[0].Rows[0]["Aboutclinic"].ToString();
             Text9.Value = ds.Tables[0].Rows[0]["Userid"].ToString();
             Password1.Value = ds.Tables[0].Rows[0]["Password"].ToString();
             HiddenField1.Value = ds.Tables[0].Rows[0]["CID"].ToString();                
             // logo binding //                
             if (ds.Tables[0].Rows[0]["Logo"].ToString() != "")
             {
                 StringBuilder logo = new StringBuilder();
                 logo.Append("<span id='Img_" + ds.Tables[0].Rows[0]["CID"].ToString() + "'>");
                 logo.Append("<img class='thumbimg' src='../Logos/" + ds.Tables[0].Rows[0]["Logo"].ToString() + "' imagepath='" + ds.Tables[0].Rows[0]["Logo"].ToString() + "'>");
                 logo.Append("<a class='thmbrmiconremove' onclick='deleteimage(this)' href='javascript:'>X</a>");
                 logo.Append("</span>");
                 instutelogo.InnerHtml = logo.ToString();
             }
             // Gallery Binding //
             if (ds.Tables[1] != null && ds1.Tables[0].Rows.Count > 0)
             {
                 StringBuilder gallery = new StringBuilder();
                 for (int i = 0; i < ds.Tables[1].Rows.Count; i++)
                 {
                     gallery.Append("<span id='Img_" + ds.Tables[1].Rows[i]["CID"].ToString() + "'>");
                     gallery.Append("<img class='galimag' src='../Gallery/" + ds.Tables[1].Rows[i]["Image"].ToString() + "' imagepath='" + ds.Tables[1].Rows[i]["Image"].ToString() + "'>");
                     gallery.Append("<a class='thmbrmiconremove' onclick='deleteimage(this)' href='javascript:'>X</a>");
                     gallery.Append("</span>");
                 }
                 paintinglogo.InnerHtml = gallery.ToString();
             }
         }
     }
 }
开发者ID:adusumillipranavi,项目名称:Doctor-Project,代码行数:66,代码来源:Clinic_Update.aspx.cs


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