Search Results

1
vote

Are there any good Javascript graphics libraries?

The canvas html element may be the best backing and is used as such in many libraries (I know flot and processingjs mentionned by sibblings are using it) canvas element is the lower API abs …
1
vote

Is there an ASP.Net MVC view engine that supports JavaScript views?

You don't necessarily need view engine for that, just return plain text result. Here is a controller (MonoRail) I've used to render some user culture settings in a javascript object: …
1
vote

Javascript submitting of a form within a method

with plain POST (no ajax) you need to store the result of your process (image order id retrieval) in an form field: <input type="hidden" name="imagesorder" value=""/> …