我有一个Java脚本,可以在其中生成一些值
productionHandler._SelFileAttributes.Add(fullPath);
productionHandler._SelFileAttributes.Add(objfile.files[0].name);
productionHandler._SelFileAttributes.Add(objfile.files[0].size);
productionHandler._SelFileAttributes.Add(objfile.files[0].type);
我也有一个拥有财产的班级
Public Property _SelFileAttributes As ArrayList
Get
Return SelFileAttributes
End Get
Set(value As ArrayList)
SelFileAttributes = value
End Set
End Property
我想要的是将Java脚本中的值发送到Class中的属性
答案 0 :(得分:0)
首先,我要单击隐藏的upload
按钮控件,该控件必须为<asp:FileUpload...
使用Java脚本(总是)我得到这个隐藏控件的值。
然后传入另一个隐藏按钮的值。
<asp:HiddenField runat="server" ID="AddAttrib" Value="" OnValueChanged="AddAttrib_ValueChanged" />
通过使用OnValueChanged
事件可以看到,我在后面的代码中捕获了它。
从那里,所有的这是很容易
谢谢所有