<%@ Import Namespace="System.Web.UI"%>
<%@ Import Namespace="System.Web.UI.WebControls" %>
<%@ Import Namespace="System.ComponentModel" %>
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Data" %>
<%
   string strsql="";
   string sConn="server=192.168.6.59;uid=mfkzhou;pwd=zhou;database=zt";
   SqlConnection conn=new SqlConnection(sConn);
   conn.Open();
   strsql="select * from zsjy where sfsy=1 order by date1 desc";
   SqlCommand cmd=new SqlCommand(strsql,conn);
   SqlDataAdapter da=new SqlDataAdapter();
   da.SelectCommand=cmd;
   DataSet ds=new DataSet();
   da.Fill(ds);
   DataTable table=ds.Tables[0];
%>

<html>
<head>
<title>
“中式卷烟”---开创中国烟草新时代
</title>
<style type="text/css">
<!--
body {  font-family: "宋体"; font-size: 9pt; margin-top: 0px; margin-left: 0px; margin-right: 0px}
A { COLOR: black; FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: none }
 A:hover { COLOR: red; FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: underline }
a:active     { font: 9pt "宋体"; cursor: hand; color: #FF0033 }
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!-- A:link {text-decoration: none; color:#2781c9; font-family: 宋体}
     A:visited {text-decoration: none; color: #000000; font-family: 宋体}
     A:active {text-decoration: none; color: #FF0000; font-family: 宋体}
     A:hover {text-decoration: underline; color: FF0000}
       body{font-size=9pt}
	TH{FONT-SIZE: 9pt}
   TD{ FONT-SIZE: 9pt}
#floater {
	position: absolute;
	left: 5;
	top: 148;
	width: 125;
	visibility: visible;
	z-index: 10;
}
-->
</style>
<link href="site.css" rel="stylesheet" type="text/css">
</head>

<body>
<div ID="floater" style="left: 0px; top: 210px">

<p align="center"><a href="jinsheng.htm"><img SRC="images/float_ad.jpg" alt="" WIDTH="111" HEIGHT="101" border="0"></a><br>
</p>
</div>
<script LANGUAGE="JavaScript">
	self.onError=null;
	currentX = currentY = 0;  
	whichIt = null;           
	lastScrollX = 0; lastScrollY = 0;
	NS = (document.layers) ? 1 : 0;
	IE = (document.all) ? 1: 0;
	<!-- STALKER CODE -->
	function heartBeat() {
		if(IE) { diffY = document.body.scrollTop; diffX = document.body.scrollLeft; }
	    if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
		if(diffY != lastScrollY) {
	                percent = .1 * (diffY - lastScrollY);
	                if(percent > 0) percent = Math.ceil(percent);
	                else percent = Math.floor(percent);
					if(IE) document.all.floater.style.pixelTop += percent;
					if(NS) document.floater.top += percent; 
	                lastScrollY = lastScrollY + percent;
	    }
		if(diffX != lastScrollX) {
			percent = .1 * (diffX - lastScrollX);
			if(percent > 0) percent = Math.ceil(percent);
			else percent = Math.floor(percent);
			if(IE) document.all.floater.style.pixelLeft += percent;
			if(NS) document.floater.left += percent;
			lastScrollX = lastScrollX + percent;
		}	
	}
	<!-- /STALKER CODE -->
	<!-- DRAG DROP CODE -->
	function checkFocus(x,y) { 
	        stalkerx = document.floater.pageX;
	        stalkery = document.floater.pageY;
	        stalkerwidth = document.floater.clip.width;
	        stalkerheight = document.floater.clip.height;
	        if( (x > stalkerx && x < (stalkerx+stalkerwidth)) && (y > stalkery && y < (stalkery+stalkerheight))) return true;
	        else return false;
	}
	function grabIt(e) {
		if(IE) {
			whichIt = event.srcElement;
			while (whichIt.id.indexOf("floater") == -1) {
				whichIt = whichIt.parentElement;
				if (whichIt == null) { return true; }
		    }
			whichIt.style.pixelLeft = whichIt.offsetLeft;
		    whichIt.style.pixelTop = whichIt.offsetTop;
			currentX = (event.clientX + document.body.scrollLeft);
	   		currentY = (event.clientY + document.body.scrollTop); 	
		} else { 
	        window.captureEvents(Event.MOUSEMOVE);
	        if(checkFocus (e.pageX,e.pageY)) { 
	                whichIt = document.floater;
	                StalkerTouchedX = e.pageX-document.floater.pageX;
	                StalkerTouchedY = e.pageY-document.floater.pageY;
	        } 
		}
	    return true;
	}
	function moveIt(e) {
		if (whichIt == null) { return false; }
		if(IE) {
		    newX = (event.clientX + document.body.scrollLeft);
		    newY = (event.clientY + document.body.scrollTop);
		    distanceX = (newX - currentX);    distanceY = (newY - currentY);
		    currentX = newX;    currentY = newY;
		    whichIt.style.pixelLeft += distanceX;
		    whichIt.style.pixelTop += distanceY;
			if(whichIt.style.pixelTop < document.body.scrollTop) whichIt.style.pixelTop = document.body.scrollTop;
			if(whichIt.style.pixelLeft < document.body.scrollLeft) whichIt.style.pixelLeft = document.body.scrollLeft;
			if(whichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - whichIt.style.pixelWidth - 20) whichIt.style.pixelLeft = document.body.offsetWidth - whichIt.style.pixelWidth - 20;
			if(whichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5) whichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5;
			event.returnValue = false;
		} else { 
			whichIt.moveTo(e.pageX-StalkerTouchedX,e.pageY-StalkerTouchedY);
	        if(whichIt.left < 0+self.pageXOffset) whichIt.left = 0+self.pageXOffset;
	        if(whichIt.top < 0+self.pageYOffset) whichIt.top = 0+self.pageYOffset;
	        if( (whichIt.left + whichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) whichIt.left = ((window.innerWidth+self.pageXOffset)-whichIt.clip.width)-17;
	        if( (whichIt.top + whichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) whichIt.top = ((window.innerHeight+self.pageYOffset)-whichIt.clip.height)-17;
	        return false;
		}
	    return false;
	}
	function dropIt() {
		whichIt = null;
	    if(NS) window.releaseEvents (Event.MOUSEMOVE);
	    return true;
	}
	<!-- DRAG DROP CODE -->
	if(NS) {
		window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
		window.onmousedown = grabIt;
	 	window.onmousemove = moveIt;
		window.onmouseup = dropIt;
	}
	if(IE) {
		document.onmousedown = grabIt;
	 	document.onmousemove = moveIt;
		document.onmouseup = dropIt;
	}
	if(NS || IE) action = window.setInterval("heartBeat()",1);
	</script>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="4"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="760" height="209">
      <param name="movie" value="images/zhongshijuanyan.swf">
      <param name=menu value=false>
      <param name="quality" value="high">
      <embed src="images/zhongshijuanyan.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="760" height="209"></embed>
    </object></td>
  </tr>
  <tr>
    <td><img src="images/index_02.jpg" width="189" height="63"></td>
    <td><img src="images/index_03.jpg" width="153" height="63"></td>
    <td><img src="images/index_04.jpg" width="174" height="63"></td>
    <td><img src="images/index_05.jpg" width="244" height="63"></td>
  </tr>
</table>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="186" align="center" valign="top" bgcolor="#F7F7F9"><table width="100%"  border="0" cellpadding="0" cellspacing="0" class="border1">
      <tr>
        <td bgcolor="#F7F7F9"><img src="images/index_06.jpg" width="186" height="57"></td>
      </tr>
      <tr>
        <td height="40" align="left" valign="middle" bgcolor="#F7F7F9"><img src="images/index_12.jpg" width="13" height="11" hspace="8"><a href="http://www.tobaccochina.com/zt/Chinese_style/z_content01.htm" target="_blank">中国卷烟科技发展纲要</a></td>
      </tr>
      <tr>
        <td bgcolor="#F7F7F9"><a href="http://www.tobaccochina.com/news/data/20047/h_3439923_720142536.htm" target="_blank"><img src="images/index_15.jpg" width="186" height="45" border="0"></a></td>
      </tr>
      <tr>
        <td height="30" align="left" valign="middle" bgcolor="#F7F7F9"><img src="images/index_12.jpg" width="13" height="11" hspace="8"><a href="http://www.tobaccochina.com/zt/Chinese_style/z_content02.htm" target="_blank">英式烤烟型卷烟</a></td>
      </tr>
      <tr>
        <td height="1" align="left" valign="middle" bgcolor="#666666"><img src="images/spacer.gif" width="1" height="1"></td>
      </tr>
      <tr>
        <td height="30" align="left" valign="middle" bgcolor="#F7F7F9"><img src="images/index_12.jpg" width="13" height="11" hspace="8"><a href="http://www.tobaccochina.com/zt/Chinese_style/z_content03.htm" target="_blank">美式混合型卷烟</a></td>
      </tr>
      <tr>
        <td height="1" align="left" valign="middle" bgcolor="#666666"><img src="images/spacer.gif" width="1" height="1"></td>
      </tr>
      <tr>
        <td height="30" align="left" valign="middle" bgcolor="#F7F7F9"><img src="images/index_12.jpg" width="13" height="11" hspace="8"><a href="http://www.tobaccochina.com/zt/Chinese_style/z_content04.htm" target="_blank">法式深色晾烟型卷烟</a></td>
      </tr>
      <tr>
        <td height="30" bgcolor="#F7F7F9"><a href="bbs_list.aspx" target="_blank"><img src="images/index_38.jpg" width="186" height="45" border="0"></a></td>
      </tr>
      <tr>
        <td height="30" align="left" valign="top" bgcolor="#F7F7F9"><table width="100%"  border="0" cellspacing="0" cellpadding="2">
          <form action=bbs_list.aspx name="form1" method="post">
            <tr bgcolor="#E6E6E6">
              <td width="39%" height="22" align="center" valign="middle">用&nbsp;&nbsp;户</td>
              <td width="61%" height="22" align="left"><input name="username" type="text" class="form1" size="16" maxlength="80" id="username"></td>
            </tr>
            <tr bgcolor="#E6E6E6">
              <td height="22" align="center" valign="middle">密&nbsp;&nbsp;码</td>
              <td height="22" align="left"><input name="password" type="password" class="form1" size="16" maxlength="80" id="password"></td>
            </tr>
            <tr bgcolor="#E6E6E6">
              <td height="25" align="center" valign="middle"><a href="bbs_content.aspx" target="_blank">活动细则</a></td>
              <td height="25" align="center" valign="middle"><input name="Submit" type="submit" class="btn" value="登录">
                <a href="reg.aspx" target="_blank"><img src="images/register.gif" width="45" height="23" border="0" align="absmiddle"></a></td>
            </tr>
          </form>
        </table></td>
      </tr>
	  <%
	     for(int i=0;i<5;i++)
		 {
	       DataRow row=table.Rows[i];
	  %>
      <tr>
        <td height="30" align="left" valign="middle" bgcolor="#F7F7F9"><img src="images/index_12.jpg" width="13" height="11" hspace="8"><a href="bbs_list.aspx" target="_blank"><%=Convert.ToString(row["title"])%></a></td>
      </tr>
      <tr>
        <td height="1" align="left" valign="middle" bgcolor="#666666"><img src="images/spacer.gif" width="1" height="1"></td>
      </tr>
	  <%}%>
    </table>
    <a href="http://www.jinsheng.com" target="_blank"><img src="images/mainleft.gif" width="164" height="400" hspace="4" vspace="4" border="0"></a></td>
    <td width="2" bgcolor="#E6E3E6"><img src="images/spacer.gif" width="1" height="1"></td>
    <td align="center" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td><table width="100%"  border="0" cellpadding="2" cellspacing="2" bgcolor="#FFFFFF">
          <tr>
            <td width="150" rowspan="2" align="right" valign="top"><img src="images/jinsheng_06.jpg" width="143" height="130"></td>
            <td width="393" height="25" align="left" valign="middle"><a href="#" target="_blank" class="greentitle">中式卷烟引领烟草业进入“低害时代”</a> </td>
          </tr>
          <tr>
            <td align="left" valign="top">&nbsp;&nbsp;&nbsp;“中国烟草要在激烈的国际竞争中立于不败之地，就必须
紧紧依靠科技创新，拥有自主知识产权，保持和发展中国卷烟
的特色，打造中国烟草自己的品牌。”中国烟草专卖局副局长
张保振6月18日在“中式卷烟降焦减害论坛”上这样说。<a href="index_content.htm" target="_blank"><img src="images/index_17.jpg" width="55" height="18" hspace="8" border="0" align="absmiddle"></a></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td><a href="expert.aspx"><img src="images/index_22.jpg" width="571" height="35" border="0"></a></td>
      </tr>
      <tr>
        <td><table width="100%"  border="0" cellpadding="0" cellspacing="2" bgcolor="#E6E3E6">
          <tr>
            <td width="25%" align="center" valign="top" bgcolor="#ECFFF2"><table width="90%"  border="0" cellspacing="4" cellpadding="0">
              <tr>
                <td width="132" align="center" valign="top"><a href="expert_contentjck.htm" target="_blank"><img src="images/index_26.jpg" width="100" height="90" vspace="6" border="0"></a></td>
              </tr>
              <tr>
                <td align="left" valign="top"><a href="expert_contentjck.htm" target="_blank"> 所谓中式卷烟，应该有较好的原料基础，有独特的核心技术，否则就难以称得上中式卷烟。</a>......</td>
              </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#FFF9FC"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td align="center" valign="top"><a href="expert_contentzbz.htm" target="_blank"><img src="images/index_28.jpg" width="100" height="90" vspace="10" border="0"></a></td>
              </tr>
              <tr>
                <td align="left" valign="top"> <p><a href="expert_contentzbz.htm" target="_blank">《中国卷烟科技发展纲要》提出了以中式卷烟为发展方向，以降焦减害为主要任务的总体科技工作思路。</a>......</p>                  </td>
              </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#ECFFF2"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td align="center" valign="top"><a href="expert_contentwyt.htm" target="_blank"><img src="images/index_30.jpg" width="100" height="90" vspace="10" border="0"></a></td>
              </tr>
              <tr>
                <td align="left" valign="top"> <a href="expert.htm"> </a>
                  <p><a href="expert_contentwyt.htm" target="_blank">目前，我国已成功地开发出了低焦油、低危害卷烟产品，已初步证明中国烤烟型卷烟烟气中亚硝胺含量较少</a>......</p>                  </td>
              </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#FFF9FC"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td align="center" valign="top"><a href="expert_contentzzq01.htm" target="_blank"><img src="images/index_32.jpg" width="100" height="90" vspace="10" border="0"></a></td>
              </tr>
              <tr>
                <td align="left" valign="top"> <a href="expert_contentzzq01.htm" target="_blank"> 烟叶生产是农业经济重要的组成部分之一，发展 “ 中式卷烟 ” 是必然的，也是必要的。</a>......</td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="570" height="90">
          <param name="movie" value="images/jinsheng.swf"><param name=menu value=false>
          <param name=quality value=high>
          <embed src="images/jinsheng.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="570" height="90"></embed>
        </object></td>
      </tr>
      <tr>
        <td><table width="100%"  border="0" cellpadding="2" cellspacing="2" bgcolor="#FFEFEF">
          <tr>
            <td width="362" height="25" align="left" valign="middle"><a href="jinsheng.htm" target="_blank" class="greentitle">中式卷烟特别报道－－成功道路上的金圣</a><a href="jinsheng.htm" target="_blank"><img src="images/index_17.jpg" width="55" height="18" hspace="8" border="0" align="absmiddle"></a></td>
            <td width="160" rowspan="4" align="center" valign="middle"><a href="jinsheng.htm"><img src="images/index_41.jpg" width="133" height="121" border="0" align="middle"></a></td>
          </tr>
          <tr>
            <td align="left" valign="top"> <p> &nbsp;&nbsp;&nbsp;南昌卷烟厂品牌管理者制定了差异化的竞争战略。金圣品牌从一开始，就在全国先人一步，探索出一条深受消费者喜爱、有自主知识产权中式低害卷烟的差异化发展道路。  正因为差异化，金圣品牌在众多的高档烟中独树一帜，散发着独有的芬芳。</p></td>
          </tr>
          <tr>
            <td align="left" valign="top" bgcolor="#FFFFFF"><img src="images/dot_1px_red.gif" width="3" height="3" hspace="4" vspace="4"><a href="corporation_content19.htm" target="_blank">“金圣”的差异化天空</a></td>
            </tr>
          <tr>
            <td align="left" valign="top" bgcolor="#FFFFFF"><img src="images/dot_1px_red.gif" width="3" height="3" hspace="4" vspace="4"><a href="index_content1.htm" target="_blank">金圣：为有特色多壮志</a></td>
            </tr>
        </table></td>
      </tr>
      <tr>
        <td><a href="argumentation.aspx"><img src="images/index_44.jpg" width="571" height="39" border="0"></a></td>
      </tr>
      <tr>
        <td><table width="100%"  border="0" cellpadding="0" cellspacing="2" bgcolor="#E6E3E6">
          <tr>
            <td width="25%" align="center" valign="top" bgcolor="#ECFFF2"><table width="90%"  border="0" cellspacing="4" cellpadding="0">
                <tr>
                  <td width="132" align="center" valign="top"><a href="argumentation_contentzkj.htm" target="_blank"><img src="images/index_47.jpg" width="100" height="90" vspace="6" border="0"></a></td>
                </tr>
                <tr>
                  <td align="left" valign="top"> <a href="argumentation_contentzkj.htm" target="_blank"> 在国际公认的致癌物烟草特有亚硝胺类的含量上，中式烤烟型卷烟远远低于国外混合型卷烟水平，也低于欧式烤烟型卷烟的含量。......</a></td>
                </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#FFF9FC"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" valign="top"><a href="argumentation_contentwls.htm" target="_blank"><img src="images/index_49.jpg" width="100" height="90" vspace="10" border="0"></a></td>
                </tr>
                <tr>
                  <td align="left" valign="top"> <a href="argumentation_contentwls.htm" target="_blank"> 做精、做强、做大“中式卷烟”必须把握几个导向：一是市场导向。二是人才导向。三是原料导向。四是客户关系的导向。五是创新的导向。......</a></td>
                </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#ECFFF2"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" valign="top"><a href="argumentation_contentywx.htm" target="_blank"><img src="images/index_51.jpg" width="100" height="90" vspace="10" border="0"></a></td>
                </tr>
                <tr>
                  <td align="left" valign="top">     <a href="argumentation_contentywx.htm" target="_blank"> 培育“中式卷烟”优势，只有切实采取以消费者利益为中心的现代市场营销策略，才能满足消费者需要,依据市场的客观需要打造“中式卷者”这一品牌......</a></td>
                </tr>
            </table></td>
            <td width="25%" align="center" valign="top" bgcolor="#FFF9FC"><table width="90%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" valign="top"><a href="argumentation_contentywx.htm" target="_blank"><img src="images/index_53.jpg" width="100" height="90" vspace="10" border="0"></a></td>
                </tr>
                <tr>
                  <td align="left" valign="top">     <a href="argumentation_contentzq.htm" target="_blank"> 敢问中式卷烟路在何方……我们的回答是以市场需求为方向，以科技创新为抓手，以科技成果在产品中的集成为手段，构建“中式卷烟”的千秋基业………… ....</a></td>
                </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
</table>
<table width="760"  border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="2"><img src="images/index_59.jpg" width="760" height="19"></td>
  </tr>
  <tr>
    <td width="115" height="60" bgcolor="#BB1313">&nbsp;</td>
    <td width="645" bgcolor="#BB1313" class="whitetext">Copyright&copy;1997-2004 by TobaccoChina Online LLC.本网站所有内容均受版权保护。<br>
未经版权所有人明确的书面许可，不得以任何方式或媒体翻印或转载本网站的部分或全部内容</td>
  </tr>
</table>
</body>
</html>