--一个兼容IE6-IE10 火狐 谷歌等浏览器的 Banner广告图片
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FIndex.aspx.cs" Inherits="Game.Web.Foyer.FIndex" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" href="../CSS/gloabl.css" rel="stylesheet" />
<link type="text/css" href="../CSS/main.css" rel="stylesheet" />
<script type="text/javascript" src="/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="/js/jquery.cxslide.min.js"></script>
<script type="text/javascript" src="../js/slider1.js"></script>
</head>
<body onselectstart="return false">
<form id="form1" runat="server" >
<div class="wrapper">
<div class="banner" >
<div id="slide_x" class="slide_x">
<div class="box">
<ul class="list">
<%
WebFragmentList = BindWeBFragnenet(1,3);
if (WebFragmentList != null)
{
foreach (var item in WebFragmentList)
{
if (item.ID == 1)
{%>
<li><a href="" target="_blank"><img width="508" src="http://www.lovexyyx.com<%= item.ImgUrl %>"></a></li>
<% }
else
{ %>
<li><a href="" target="_blank"><img width="508" src="http://www.lovexyyx.com<%= item.ImgUrl %>"></a></li>
<% }
} } %>
</ul>
</div>
<ul class="btn">
<li class="b_1">1</li>
<li class="b_2">2</li>
<li class="b_3 selected">3</li>
</ul>
<div class="plus"></div><div class="minus"></div></div>
</div>
<div class="activity">
<div class="acttit">活动专题介绍</div>
<div class="actlist">
<div class="btnleft"><img src="/image/btnleft.jpg"></div>
<div class="ibox1">
<div class="aclist">
<ul>
<%
WebFragmentList = BindWeBFragnenet(2,6);
if (WebFragmentList != null)
{
foreach (var item in WebFragmentList)
{
if (item.ID == 4)
{ %>
<li>
<span><a title="<%=item.Title %>" target="_blank" href="<%=item.ExtendUrl %>"><img src="http://www.lovexyyx.com<%= item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<% }
else
{ %>
<li>
<span><a title="<%=item.Title %>" target="_blank" href="<%=item.ExtendUrl %>"><img src="http://www.lovexyyx.com<%= item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<% }
} } %>
<%
WebFragmentList = BindWeBFragnenet(2,6);
if (WebFragmentList != null)
{
foreach (var item in WebFragmentList)
{
if (item.ID == 4)
{ %>
<li>
<span><a title="<%=item.Title %>" href="<%=item.ExtendUrl %>" target="_blank"><img src="http://www.lovexyyx.com<%= item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<% }
else
{ %>
<li>
<span><a title="<%=item.Title %>" target="_blank" href="<%=item.ExtendUrl %>"><img src="http://www.lovexyyx.com<%= item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<% }
} } %>
</ul>
</div>
</div>
<div class="btnright"><img src="/image/btnright.jpg"></div>
</div>
</div>
<div class="match">
<div class="matchtit">比赛专题介绍</div>
<div class="matchlist">
<div class="mbtnleft"><img src="/image/btnleft.jpg"></div>
<div class="ibox">
<div class="mlist">
<ul>
<% WebFragmentList = BindWeBFragnenet(3, 6);
if (WebFragmentList != null)
{
foreach (var item in WebFragmentList)
{
%>
<li>
<span><a title="<%=item.Title %>" href="<%=item.ExtendUrl %>" target="_blank" ><img src="http://www.lovexyyx.com<%=item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<%}
} %>
<% WebFragmentList = BindWeBFragnenet(3, 6);
if (WebFragmentList != null)
{
foreach (var item in WebFragmentList)
{
%>
<li>
<span><a title="<%=item.Title %>" href="<%=item.ExtendUrl %>" target="_blank" ><img src="http://www.lovexyyx.com<%=item.ImgUrl %>" width="124px" height="73px"></a></span>
<samp><a href="" class="grey"><%=item.Title%></a></samp>
</li>
<%}
} %>
</ul>
</div>
</div>
<div class="mbtnright"><img src="/image/btnright.jpg"></div>
</div>
</div>
</div>
<script type="text/javascript">
$("#slide_x").cxSlide({ plus: true, minus: true });
</script>
</form>
</body>
</html>
FIndex.cs 代码
public partial class FIndex : UCPageBase
{
public string webadd = Game.Utils.ApplicationSettings.Get("qiantWeb");
private PlatformFacade platfomrFacade = new PlatformFacade();
public IList<WebFragmentInfo> WebFragmentList = null;
private NativeWebFacade webFacade = new NativeWebFacade();
public IList<GameKindItem> GameList = null;
protected void Page_Load(object sender, EventArgs e)
{
}
public IList<GameKindItem> GetGameKindItem(int typeId, int top)
{
IList<GameKindItem> GetHotGameList = platfomrFacade.GetGameKindsByTypeID(typeId, top);
return GetHotGameList;
}
#region 获取Bannder相关信息
public IList<WebFragmentInfo> BindWeBFragnenet(int typeId, int top)
{
IList<WebFragmentInfo> GetFragmentInfoList = webFacade.GetWebFragmentInfo(typeId, top);
return GetFragmentInfoList;
}
#endregion
分享到:
相关推荐
全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,以及Firefox 谷歌等符合标准的浏览器,模板样式集中在一个CSS文件中,内容与样式完全分离, 方便网站设计人员开发模板与管理。系统较为安全,以设计防注入,敏感...
Angel工作室精简版企业网站管理系统全DIV+CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐, 谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站...
全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员开发模板与管理。系统较为安全,以设计防注入,敏感字符屏蔽。...
Angel工作室企业网站管理系统全DIV+CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员...
Angel工作室企业网站管理系统全DIV+CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员...
Angel工作室企业网站管理系统全DIV+CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员...
本文主要讲述如何利用jQuery实现一个简单的图片切换效果,该方法支持跨浏览器的兼容,包括早期的IE6浏览器、火狐(Firefox)、谷歌(Chrome)、欧朋(Opera)等现代浏览器。文章通过实例代码演示了如何使用jQuery...
Angel工作室企业网站管理系统全DIV CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员...
http://www.027jz.cc/系统优势: 全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,以及Firefox 谷歌等符合标准的浏览器,模板样式集中在一个CSS文件中,内容与样式完全分离,方便网站设计人员开发模板与管理。...
Angel工作室企业网站管理系统全DIV CSS模板,中英文显示,防注入sql关键字过滤,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员...
樱桃企业网站管理系统,全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员开发模板与管理。系统较为安全,以设计防...
樱桃企业网站管理系统全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,火狐,谷歌等符合标准的浏览器,模板样式集中在一个CSS样式中,内容与样式完全分离,方便网站设计人员开发模板与管理。系统较为安全,以设计防...
六、DIV CSS布局,全部兼容IE6、IE7、IE8、火狐等主流浏览器; 七、栏目、留言、新闻、产品等等模块,均可以无限级别分类,后台可以图文修改、添加、删除等等,前台调用数据也简单灵活,可在此基础上开发出不同的...
全DIV+CSS模板,多浏览器适应,完美兼容IE6-IE8,以及Firefox 谷歌等符合标准的浏览器,模板样式集中在一个CSS文件中,内容与样式完全分离, 方便网站设计人员开发模板与管理。系统较为安全,以设计防注入,敏感...
2.DIV CSS布局,全部兼容IE6、IE7、IE8、Firefox、Opera、Safari、谷歌、腾讯TT、360度、遨游等主流浏览器。 3.程序和界面分离,提供通用的PHP标准语法字段供前台调用,可以为不同的页面设置不同的风格。 4.支持...