Here is a small code to remove spaces from textbox's text in onblur event.
<asp:TextBox ID="TextBox2" runat="server" onblur="javascript:value=value.replace(/\s/g,'');"></asp:TextBox>
To remove HTML tags..
<asp:textbox id="TextBox2" runat="server" onblur="this.value = this.value.replace(/<\/?[^>]+>/gi, '');">
</asp:textbox>
Please let me know, if you have any issues.