CFF KB - Carrz-Fox-Fire Promotions Knowledge Base

CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.
  • Breadrumbs:
  • Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'Response.Write'

  • CFF Knowledge Base - Share With Facebook CFF Knowledge Base - Share on Twitter CFF Knowledge Base - Share on Reddit CFF Knowledge Base - Share on Digg It CFF Knowledge Base - Share on Stumble Upon It CFF Knowledge Base - Share on Delicious
    Share With Friends (Updated 6-8-2010)
  • Article ID:
    122
  • Date Created
    Wednesday, March 23, 2011
  • This Article Has been Viewed
    4312 times
  • Short Desc
    When writing out your Response.Write, you may add in an invalid character that will cause the following error.
  • Details
    When you write the Response.Write in your code, you may sometimes add an invalid character that will result in the following error.

     
    Microsoft VBScript runtime error '800a01b6'
    Object doesn't support this property or method: 'Response.Write'
    /NewInsert.asp, line 32

  • Recreate Issue
    To recreate this issue:

    When writing your Response.Write, you write it like so:
    Example
    <%
    Response.Write="This is my example"
    %>


    As you can see, the above example has an invalid character which is the = sign.
    No such character is needed in the Response.Write method.
  • Resolve Issue
    To resolve this issue:

    To properly write out the Response.Write.

    <%
    Response.Write"This is my example"
    %>