Convert Plain Text to MD5 Hash
11/20/2007
| Author: Brian Pautsch
| Category: Code Snippets
| 2847 Views
|
Nothing groundbreaking here, but if you need to know how to convert plain text to an MD5 Hash, here you go:
1using System;
2using System.Security.Cryptography;
3using System.Text;
45public static string ConvertTo...
Enable File Upload on an AJAX Webpage
11/8/2007
| Author: Brian Pautsch
| Category: Code Snippets
| 1548 Views
|
File uploads do not work when doing async postbacks due to security restrictions. Because of this, we have to add a PostBackTrigger. PostbackTriggers enable controls inside an UpdatePanel to cause a postback instead of p...