我正在使用jQuery-File-Upload插件上传文件。 https://blueimp.github.io/jQuery-File-Upload/
我的问题是如何添加文件数组以使用private static string m_ConnectionString = System.Configuration.ConfigurationManager.AppSettings["ConnectionString"];
/// <summary>
/// Constructor
/// </summary>
public WordDV()
{
// Stop an existing services on this connection string
SqlDependency.Stop(m_ConnectionString);
// Start the dependency
SqlDependency.Start(m_ConnectionString);
}
/// <summary>
/// Destructor
/// </summary>
~WordDV()
{
// Stop the dependency before exiting
SqlDependency.Stop(m_ConnectionString);
}
单击时动态输入files[]
?
下面是我正在尝试的代码,但我认为出了点问题。
JQuery