你好,可分为以下 5 步操作:
1.添加 FileUpload 和 标准 Button 控件。
2.添加 Spread 的 onclick 事件,调用 FileUpload ,代码如下:
后台- this.FpSpread1.Attributes.Add("onclick", "test()");
复制代码 前台-
- function test() {
- document.getElementById("FileUpload1").click();
- }
复制代码 3.添加 button click事件,事件中使用 FileUpload.SaveAs 把文件提交 FileUpload 中文件到后台(相对路径)。
4.创建 ImageCellType,ImageCellType 的 imageurl 属性设置为 3 中保存的文件。
5.把单元格类型设置为 ImageCellType。 |