tags:

views:

30

answers:

1

is it possible to use uploadify in asp (not .Net)?

A: 

Without really knowing what you're trying to do, my initial answer is yes. I don't see why not.

You're rending HTML down to the client regardless -- just have your <script> tags set properly and you're ready to rock n' roll! ASP outputs HTML to the client, which is just what ASP.NET, PHP and a number of other web technologies output. ASP is just the mechanism you're using to provide some sort of dynamic content to your pages.

Also, it's important to note that the requirements for uploadify do not specify the server-side technology to use:

Requirements

  • jQuery v1.2.x or greater
  • SWFObject v2.2 or greater
  • Flash Player v9.0.24 or greater

It's all client-side technology requirements.

If you provide more details, we can probably give a more detailed answer.

David Hoerster