File Upload Control
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi All, How i can used File Upload Control and i limit user to enter any text in this control and only browse in her/him files? Thank You,
Hoda
modified on Friday, February 13, 2009 12:45 PM
just use a FileUpload control and block the keypress JS event handler
onkeypress=”javascript: return false;”
FileUpload1.Attributes.Add("onkeypress","javascript: return false;");
Calin