Skip to main content

Accept Attribute in Html

Accept attribute in html

Specify that the server accepts only image files in the file upload

< form   action= "demo_form.asp" >
   < input   type= "file"   name= "pic"   accept= "image/*" >
   < input   type= "submit" >
< /form >


Definition and Usage

The accept attribute specifies the types of files that the server accepts (that can be submitted through a file upload).
Note:  The accept attribute can only be used with <input type="file">.
and also use in <asp:fileupload> 

Syntax
<input accept="file_extension |audio/*|video/*|image/*|media_type ">

Attribute Values

Value Description
file_extension A file extension starting with the STOP character,
e.g: .gif, .jpg, .png, .doc
audio/* All sound files are accepted
video/* All video files are accepted
image/* All image files are accepted
media_type A valid media type, with no parameters.
Look at IANA Media Types  
for a complete list of standard media types

 

Comments

Popular posts from this blog

MIME Types list

Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email to support: Text in character sets other than ASCII Non-text attachments: audio, video, images, application programs etc. Message bodies with multiple parts Header information in non-ASCII character sets    MIME Types list   Suffixes Mime .3dm x-world/x-3dmf .3dmf x-world/x-3dmf .a application/octet-stream .aab application/x-authorware-bin .aam application/x-authorware-map .aas application/x-authorware-seg .abc text/vnd.abc .acgi text/html .afl video/animaflex .ai application/postscript .aif audio/aiff .aif audio/x-aiff .aifc audio/aiff .aifc audio/x-aiff .aiff audio/aiff .aiff audio/x-aiff .aim application/x-aim .aip text/x-audiosoft-intra .ani application/x-navi-animation .aos application/x-nokia-9000-communicator-add-on-software .aps application/mime .arc ap...

How to get First,Last,Next,Previews Data in .Net C#

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.Odbc; using System.IO; namespace WindowsApplication1 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         OdbcDataAdapter da;         DataSet ds;         int i = 0;         int j;         OdbcConnection conn;         int last;         private ...