解决方法
尝试这个:
<input type="password" ... autocapitalize="off">
这是直接从苹果:
http://developer.apple.com/library/safari/#codinghowtos/mobile/userExperience/_index.html
编辑:
尝试添加autocapitalize标签到您的asp:文本框,看看是否有效.
<asp:TextBox ID="txbPassWord" runat="server" TextMode="Password" autocapitalize="off"></asp:TextBox>