27 lines
846 B
C#
27 lines
846 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace SuperMap.RealEstate.HousingSecurity.APIPlugs
|
|
{
|
|
public partial class flashupload : System.Web.UI.UserControl
|
|
{
|
|
protected SuperMap.RealEstate.HousingSecurity.APIPlugs.flashuploader.MyUpFlash myflash;
|
|
public SuperMap.RealEstate.HousingSecurity.APIPlugs.flashuploader.MyUpFlash Myflash
|
|
{
|
|
get { return myflash; }
|
|
set { myflash = value; }
|
|
}
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
//myflash = new MyUpFlash();
|
|
//myflash.InitByCol(3, 372, 180, 180, 15);
|
|
//myflash.flashvars.url = string.Format("/api/upload/upimg.ashx?houseid={0}", 1);//提交地址
|
|
|
|
}
|
|
}
|
|
} |