Jak zainstalować NeatUpload?

Salvete! Podczas wyszukiwania jakościowej, bezpłatnej kontroli przesyłania asp.net/ajax znalazłem NeatUpload. Nie mogę znaleźć wersji demonstracyjnej online, ale pakiet do pobrania zawiera demo. Potrzebuję pomocy przy instalacji na moim serwerze (Windows Server 2008).

Postępowałem zgodnie ze wskazówkami nahttp://mumblestiltskin.blogspot.com/2009/10/using-neatupload-simple-setup.html (są w zasadzie takie same jak wskazówki w manual.htm, które są dostarczane z pakietem binarnym NeatUpload).

Jak dotąd mam

Pomyślnie zainstalowano Brettle.Web.NeatUpload.dll do GAC przy użyciu gacutil.Dodano odniesienie w moim web.config (z wersją i przewodnikiem)skopiowałem plik demo i jego kod do mojej aplikacji internetowej (która jest zarejestrowana w iis7)

Teraz, gdy przeglądam stronę, włączam błąd serwera asp.net

<code>Line 35: protected MultiFile multiFile;
Line 36: protected MultiFile multiFile2;
Line 37: protected InputFile inputFile;
</code>

i

<code>error CS0246: The type or namespace name 'MultiFile' could not be found (are you missing a using directive or an assembly reference?)
error CS0246: The type or namespace name 'MultiFile' could not be found (are you missing a using directive or an assembly reference?)
error CS0246: The type or namespace name 'InputFile' could not be found (are you missing a using directive or an assembly reference?)
error CS0246: The type or namespace name 'InputFile' could not be found (are you missing a using directive or an assembly reference?)
error CS0246: The type or namespace name 'ProgressBar' could not be found (are you missing a using directive or an assembly reference?)
error CS0246: The type or namespace name 'ProgressBar' could not be found (are you missing a using directive or an assembly reference?)
</code>

Co mam teraz zrobić? Czy muszę gdzieś skopiować inny plik DLL lub pewne pliki? Nie mogę tego zrozumieć z dokumentacji.

questionAnswers(1)

yourAnswerToTheQuestion