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


C# BLL.article.ContentExists方法代碼示例

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


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

示例1: get_content

 /// <summary>
 /// 根據調用標識取得內容頁內容
 /// </summary>
 /// <param name="call_index">調用標識</param>
 /// <returns></returns>
 protected string get_content(string call_index)
 {
     if (string.IsNullOrEmpty(call_index))
         return "";
     BLL.article bll = new BLL.article();
     if (bll.ContentExists(call_index))
     {
         return bll.GetContentModel(call_index).content;
     }
     return "";
 }
開發者ID:egojit,項目名稱:B2C,代碼行數:16,代碼來源:article_content.cs

示例2: ShowPage

 /// <summary>
 /// 重寫虛方法,此方法將在Init事件前執行
 /// </summary>
 protected override void ShowPage()
 {
     id = DTRequest.GetQueryInt("id");
     page = DTRequest.GetQueryString("page");
     BLL.article bll = new BLL.article();
     BLL.sys_channel bll_channel = new BLL.sys_channel();
     if (id > 0)
     {
         if (!bll.Exists(id))
         {
             HttpContext.Current.Response.Redirect(config.webpath + "error.aspx?msg=" + Utils.UrlEncode("出錯啦,您要瀏覽的頁麵不存在或已刪除啦!"));
             return;
         }
         model = bll.GetContentModel(id);
     }
     else if (!string.IsNullOrEmpty(page))
     {
         if (!bll.ContentExists(page))
         {
             HttpContext.Current.Response.Redirect(config.webpath + "error.aspx?msg=" + Utils.UrlEncode("出錯啦,您要瀏覽的頁麵不存在或已刪除啦!"));
             return;
         }
         model = bll.GetContentModel(page);
     }
     else
     {
         Server.Transfer("error.aspx");
         return;
     }
     //瀏覽數+1
     bll.UpdateField(model.id, "click=click+1");
     //跳轉URL
     if (model.link_url != null)
         model.link_url = model.link_url.Trim();
     if (!string.IsNullOrEmpty(model.link_url))
     {
         HttpContext.Current.Response.Redirect(model.link_url);
     }
     channel = bll_channel.GetModel(model.channel_id);
 }
開發者ID:sichina,項目名稱:or-dtcms2.0,代碼行數:43,代碼來源:content_show.cs


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