懒人我这么干
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www. >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div runat="server" id="play">
</div>
</form>
</body>
</html>
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.Web.Services2;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string str = "<marquee id='scrollarea' onmouseover='this.stop(); ' onmouseout='this.start();' scrollamount='1' "
+ " scrolldelay='10' direction='down' style='width: 384px; height: 176px'> "
+ "<center><IMG SRC='images/291.jpg' /></center> "
+ "<center><IMG SRC='images/3274354.jpg' /></center> "
+ "<center><IMG SRC='images/dao4.jpg' /></center> "
+ "<center><IMG SRC='images/0.jpg' /></center> "
+ "</marquee>";
this.play.InnerHtml = str;
}
}