您好我有一个aspx页面允许特殊格式化为教科书(txtFeedback),因此当用户复制并粘贴word文档时,它会进行格式化。
有没有在粘贴时去除富文本格式?或者只在框中强制使用未格式化的文本?
<asp:Panel runat="server" ID="pnlReqFB" Visible="false">
<asp:HiddenField runat="server" ID="hidPeerNo" /> <br />
<table>
<tr><td>Email To</td><td colspan="5"><asp:TextBox runat="server" ID="txtPeerEMail" Width="250px"></asp:TextBox></td></tr>
<tr><td style="vertical-align:top">EMail Text</td><td colspan="5"><asp:TextBox runat="server" ID="txtPeerText" Height="100px" Width="250px" TextMode="MultiLine" ></asp:TextBox></td></tr>
<tr><td style="vertical-align:top"><asp:Label runat="server" ID="lblFB" Visible="false" Text="Feedback"></asp:Label></td><td colspan="5"><asp:TextBox runat="server" Visible="false" ID="txtFeedback" Height="100px" Width="250px" TextMode="MultiLine" ></asp:TextBox></td></tr>
<tr><td><asp:Button runat="server" ID="cmdSaveReq" OnClick="cmdSaveReq_Click" Text="Submit"></asp:Button></td><td></td></tr>
</table>
</asp:Panel>
答案 0 :(得分:0)
使用RegularExpressionValidator
。像
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ValidationExpression="[a-zA-Z ]*$" ControlToValidate="txtFeedback" ErrorMessage="Your Error Message Text Here" ></asp:RegularExpressionValidator>