asp.net里怎么实现flash电子书效果?
前台object:
<embed src=<%=path%> quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="136"> </embed>
后台:
public class test3 : System.Web.UI.Page
{
Conn mycon=new Conn();
private MySQLDriverCS.MySQLDataReader myReader;
string path="";
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
string select_pic_SQL="select pic from ad where ad_id='1'";
mycon.DbConnection();
myReader=this.mycon.ExecuteReader(select_pic_SQL);
this.myReader.Read();
path=this.myReader["pic"].ToString().Trim();
mycon.DbdisConnection();
}