Please refer this HTML code.
This will allow you Alphabets, Special Charecters (, . #)
<u>1. Using Regular Expression Validator</u>
<hr />
<asp:TextBox ID="TextBox1" runat="server" />
<br />
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="TextBox1"
ValidationExpression="[a-zA-Z.,#]*$" ErrorMessage="*Valid characters: Alphabets and Special Characters (.,#)." />
<br />
<asp:Button ID="Button1" Text="Validate" runat="server" />