當前位置: 首頁>>代碼示例>>C#>>正文


C# Category.IsColumnNull方法代碼示例

本文整理匯總了C#中Category.IsColumnNull方法的典型用法代碼示例。如果您正苦於以下問題:C# Category.IsColumnNull方法的具體用法?C# Category.IsColumnNull怎麽用?C# Category.IsColumnNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Category的用法示例。


在下文中一共展示了Category.IsColumnNull方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Page_Load

 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         Category cat = new Category();
         cat.Where.CategoryID.Value = CategoryID;
         if (cat.Query.Load())
         {
             lblName.Text = cat.GetColumn("Name" + Utils.LangPrefix).ToString();
             if (!cat.IsColumnNull("CategoryContent" + Utils.LangPrefix))
             {
                 lblCategoryContent.Text = cat.GetColumn("CategoryContent" + Utils.LangPrefix).ToString();
             }
         }
     }
 }
開發者ID:ivladyka,項目名稱:YourTravel,代碼行數:16,代碼來源:CategoryView.aspx.cs

示例2: LoadTitle

 private void LoadTitle()
 {
     Category c = new Category();
     if (c.LoadByPrimaryKey(CategoryID))
     {
         string title = "";
         if (!c.IsColumnNull("Title" + Utils.LangPrefix))
         {
             title = c.GetColumn("Title" + Utils.LangPrefix).ToString();
         }
         if (title.Trim() == "")
         {
             title = c.GetColumn("Name" + Utils.LangPrefix).ToString();
         }
         this.m_Name = title;
     }
 }
開發者ID:ivladyka,項目名稱:Ekran,代碼行數:17,代碼來源:GalleryTableView.ascx.cs

示例3: LoadCategories

 private void LoadCategories()
 {
     const int countCells = 2;
     HtmlTableRow row = new HtmlTableRow();
     Category c = new Category();
     //c.Where.IsGallery.Value = true;
     if(c.Query.Load())
     {
         do
         {
             string title = "";
             if (!c.IsColumnNull("Title" + Utils.LangPrefix))
             {
                 title = c.GetColumn("Title" + Utils.LangPrefix).ToString();
             }
             if (title.Trim() == "")
             {
                 title = c.GetColumn("Name" + Utils.LangPrefix).ToString();
             }
             if (row.Cells.Count < countCells)
             {
                 row.Cells.Add(AddCategoryCellInnerHTML(c.CategoryID, title));
             }
             else
             {
                 tblCategory.Rows.Add(row);
                 row = new HtmlTableRow();
                 row.Cells.Add(AddCategoryCellInnerHTML(c.CategoryID, title));
             }
         } while (c.MoveNext());
     }
     for (int i = row.Cells.Count; i < countCells; i++)
     {
         row.Cells.Add(AddTableCell("&nbsp;"));
     }
     tblCategory.Rows.Add(row);
 }
開發者ID:ivladyka,項目名稱:Ekran,代碼行數:37,代碼來源:GalleryTableList.ascx.cs

示例4: LoadCommonPageData

 private void LoadCommonPageData()
 {
     Settings s = new Settings();
     if (s.LoadByPrimaryKey(1))
     {
         Category c = new Category();
         if (c.LoadByPrimaryKey(CategoryID))
         {
             if (!c.IsColumnNull("Keywords" + Utils.LangPrefix))
             {
                 m_Keywords = c.GetColumn("Keywords" + Utils.LangPrefix).ToString();
             }
             if (!c.IsColumnNull("Description" + Utils.LangPrefix))
             {
                 m_Description = c.GetColumn("Description" + Utils.LangPrefix).ToString();
             }
         }
         if (m_Keywords.TrimEnd().Length == 0 && !s.IsColumnNull("Keywords" + Utils.LangPrefix))
         {
             m_Keywords = s.GetColumn("Keywords" + Utils.LangPrefix).ToString();
         }
         if (m_Description.TrimEnd().Length == 0 && !s.IsColumnNull("Description" + Utils.LangPrefix))
         {
             m_Description = s.GetColumn("Description" + Utils.LangPrefix).ToString();
         }
         if (m_Keywords.TrimEnd().Length == 0)
         {
             m_Keywords = Resources.Vikkisoft.MetaKeywords;
         }
         if (m_Description.TrimEnd().Length == 0)
         {
             m_Description = Resources.Vikkisoft.MetaDescription;
         }
     }
 }
開發者ID:ivladyka,項目名稱:Ekran,代碼行數:35,代碼來源:DefaultMP.master.cs

示例5: LoadCategory

 private void LoadCategory()
 {
     Category c = new Category();
     c.Where.CategoryID.Value = CategoryID;
     if (c.Query.Load())
     {
         if (CategoryID > 1)
         {
             lblName.Text = c.GetColumn("Name" + Utils.LangPrefix).ToString();
         }
         this.m_Name = c.GetColumn("Name" + Utils.LangPrefix).ToString();
         if (!c.IsColumnNull("CategoryContent" + Utils.LangPrefix))
         {
             lblCategoryContent.Text = c.GetColumn("CategoryContent" + Utils.LangPrefix).ToString();
         }
         if (!c.IsColumnNull(Category.ColumnNames.RoomCategoryID))
         {
             LoadRoomPrice(c.RoomCategoryID);
         }
     }
 }
開發者ID:ivladyka,項目名稱:Ekran,代碼行數:21,代碼來源:CategoryView.ascx.cs


注:本文中的Category.IsColumnNull方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。