Search Results

1
vote
10answers
2k views

Fastest way to calculate primes in C#?

I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people. int Until = …
2
votes

FileUpload control inside an UpdatePanel without refreshing the whole page?

You can't upload file(s) via AJAX only by reloading a whole HTML document. You should either use iframes if you prefer pure HTML (this is more common, eg. use …