web里引用winform用户控件
是这样的 。我用winform 做了一个多文件上传控件而且 我也想通过web传递一些参数过来 我不知道能不能传递 我这样写的
public UploadFile(string serPaths, string reqs, string strcons, string smallFiles, int widths, int heights)
{
InitializeComponent();
this.SerPath = serPaths;
this.SmallWidth = widths;
this.SmallHeight = heights;
this.Req = reqs;
this.StrConn = strcons;
this.SmallFile = smallFiles;
}
public UploadFile() { InitializeComponent(); }
然后生成 的dll文件 放在web项目下 然后新建html写到
<object id = "Object1" name = "Activex12" classid = "NewType.dll#NewType.UserUploadFile" style="width: 482px; height: 170px; background-color:#d4d0c8"></object>
但是在客户端给了权限及安装了Framework之后不显示。可以是我代码有问题(因为我新建一个用户控件 只放了一个按钮 在web是可以显示的)
还有一个问题是 我在html里怎么给 UploadFile的这些属性赋值?
--------------------编程问答-------------------- 怎么每次提问都没人回答啊!!?!?!
补充:.NET技术 , C#