ASP ContentType ÊôÐÔ
ContentType ÊôÐÔΪ response ¶ÔÏóÉèÖà HTTP ÄÚÈÝÀàÐÍ¡£
Óï·¨£º
response.ContentType[=contenttype]
²ÎÊý | ÃèÊö |
---|---|
contenttype |
ÃèÊöÄÚÈÝÀàÐ͵Ä×Ö·û´®¡£ ÈçÐèÍêÕûµÄÄÚÈÝÀàÐÍÁÐ±í£¬Çë²ÎÔÄÄúµÄä¯ÀÀÆ÷Îĵµ»ò HTTP ¹æ·¶¡£ |
ʵÀý
Èç¹û ASP Ò³ÃæÃ»ÓÐÉèÖà ContentType ÊôÐÔ£¬ÄÇôĬÈ쵀 content-type Í·²¿ÊÇÕâÑùµÄ£º
content-type:text/html
ÆäËûһЩ³£ÓÃµÄ ContentType Öµ£º
<%response.ContentType="text/HTML"%> <%response.ContentType="image/GIF"%> <%response.ContentType="image/JPEG"%> <%response.ContentType="text/plain"%> <%response.ContentType="image/JPEG"%>
´ËÀý»áÔÚä¯ÀÀÆ÷Öдò¿ªÒ»¸ö Excel µç×Ó±í¸ñ£¨Èç¹ûÓû§ÒѾ°²×°ÁË Excel £©£º
<%response.ContentType="application/vnd.ms-excel"%> <html> <body> <table> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>5</td> <td>6</td> <td>7</td> <td>8</td> </tr> </table> </body> </html>