通过本文主要向大家介绍了fileupload控件,fileupload控件下载,fileupload控件属性,c fileupload控件,fileupload控件java等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
html标签:
<input type="text" name="txt" onkeydown="event.returnValue=false;" onpaste="return false" />
服务器控件:
<asp:TextBox ID="txt" runat="server" onkeydown="event.returnValue=false;" onpaste="return false"></asp:TextBox>
用FileUpload经常要禁止手动输入:
<asp:FileUpload ID="fu" runat="server" onkeydown="event.returnValue=false;" onpaste="return false" /> </div>
<input type="text" name="txt" onkeydown="event.returnValue=false;" onpaste="return false" />
服务器控件:
<asp:TextBox ID="txt" runat="server" onkeydown="event.returnValue=false;" onpaste="return false"></asp:TextBox>
用FileUpload经常要禁止手动输入:
<asp:FileUpload ID="fu" runat="server" onkeydown="event.returnValue=false;" onpaste="return false" /> </div>