本文整理汇总了C#中News.LoadNewsListBy方法的典型用法代码示例。如果您正苦于以下问题:C# News.LoadNewsListBy方法的具体用法?C# News.LoadNewsListBy怎么用?C# News.LoadNewsListBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类News
的用法示例。
在下文中一共展示了News.LoadNewsListBy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
string htmlstring = "<div class=\"laycontent\" style=\"display:block;\">\n"
+ "<section class=\"grid yahei\">\n"
+ "<div class=\"pro_c\">";
News newsList = new News();
int RecordCount = newsList.LoadNewsListBy(11,10);
if (RecordCount > 0)
{
for (int i = 0; i < RecordCount; ++i)
{
htmlstring += newsList.NewsList[i].newsContent;
}
}
else
htmlstring += "●暂无信息\n";
htmlstring += "</div>\n</section>\n" + "</div>\n";
htmlstring += "<div class=\"laycontent\" style=\"display:none;\">\n"
+ "<section class=\"grid yahei\">\n"
+ "<div class=\"pro_c\">";
RecordCount = newsList.LoadNewsListBy(11,11);
if (RecordCount > 0)
{
for (int i = 0; i < RecordCount; ++i)
{
htmlstring += newsList.NewsList[i].newsContent;
}
}
else
htmlstring += "●暂无信息\n";
htmlstring += "</div>\n</section>\n" + "</div>\n";
htmlstring += "<div class=\"laycontent\" style=\"display:none;\">\n"
+ "<section class=\"grid yahei\">\n";
RecordCount = newsList.LoadNewsListBy(11,12);
if (RecordCount > 0)
{
htmlstring += "<div class=\"pro_c yahei\" id=\"pro_box\">\n"
+ "<div class=\"pro_menu\">\n";
for (int i = 0; i < RecordCount; ++i)
{
htmlstring += "<dl>\n"
+ "<dt class=\"font_18\">" + newsList.NewsList[i].newsTitle + "</dt>\n"
+ "<dd style=\"display: none;\">\n"
+ "<div id=\"pro_hidden\">\n"
+ "<div id=\"pro_list\">\n" + newsList.NewsList[i].newsContent + "</div>\n"
+ "<div class=\"clear\"></div>\n"
+ "</dd>\n"
+ "</dl>\n";
}
htmlstring += "</div>\n" + "</div>\n";
}
else
htmlstring += "●暂无信息\n";
htmlstring += "</section>\n" + "</div>\n";
htmlstring += "<div class=\"laycontent\" style=\"display:none;\">\n"
+ "<section class=\"grid yahei\">\n"
+ "<div class=\"pro_c\">";
RecordCount = newsList.LoadNewsListBy(11,13);
if (RecordCount > 0)
{
for (int i = 0; i < RecordCount; ++i)
{
htmlstring += newsList.NewsList[i].newsContent;
}
}
else
htmlstring += "●暂无信息\n";
htmlstring += "</div>\n</section>\n" + "</div>\n";
this.rightsideContent.InnerHtml = htmlstring;
// if (Request["tab"] != null)
// {
// ClientScript.RegisterStartupScript(this.GetType(), "", "<script language='javascript'>$(\"#convenience\").click();</script>");
// }
}