本文整理匯總了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 "";
}
示例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);
}