| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* System.Web.UI.HtmlControls
- * Authors
- * Leen Toelen ([email protected])
- */
- using System;
- using System.ComponentModel;
- using System.Web;
- using System.Web.UI;
- using System.Globalization;
- using System.Collections.Specialized;
- namespace System.Web.UI.HtmlControls{
- [ValidationProperty("Value")]
- public class HtmlInputFile : HtmlInputControl, IPostBackDataHandler{
-
- public HtmlInputFile():base("file"){}
-
- bool IPostBackDataHandler.LoadPostData (string postDataKey,
- NameValueCollection postCollection)
- {
- string postValue = postCollection [postDataKey];
- if (postValue != null)
- Value = postValue;
- return false;
- }
-
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- }
-
- [DefaultValue("")]
- [WebCategory("Behavior")]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public string Accept{
- get{
- string attr = Attributes["accept"];
- if (attr != null)
- return attr;
- return String.Empty;
- }
- set{
- Attributes["accept"] = AttributeToString(value);
- }
- }
-
- [DefaultValue("")]
- [WebCategory("Behavior")]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public int MaxLength{
- get{
- string attr = Attributes["maxlength"];
- if (attr != null)
- return Int32.Parse(attr, CultureInfo.InvariantCulture);
- return -1;
- }
- set{
- Attributes["accept"] = AttributeToString(value);
- }
- }
-
- [DefaultValue("")]
- [WebCategory("Appearance")]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public int Size{
- get{
- string attr = Attributes["size"];
- if (attr != null)
- return Int32.Parse(attr, CultureInfo.InvariantCulture);
- return -1;
- }
- set{
- Attributes["size"] = AttributeToString(value);
- }
- }
-
- [DefaultValue("")]
- [WebCategory("Misc")]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public HttpPostedFile PostedFile{
- get{
- return Context.Request.Files[RenderedName];
- }
- }
-
- } // class HtmlInputFile
- } // namespace System.Web.UI.HtmlControls
|