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:
  • Active Server Pages, ASP 0238 (0x80004005) No value was specified for the 'file' attribute.

  • 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:
    86
  • Date Created
    Friday, December 31, 2010
  • This Article Has been Viewed
    2255 times
  • Short Desc
    When creating your INCLUDE FILE you mistakenly add on 1 to many Double Quotes.
  • Details
    When creating your INCLUDE FILE you might mistakenly add in 1 to many Double Quotes, and when this happens, you will receive the following error.

     
    Active Server Pages, ASP 0238 (0x80004005)
    No value was specified for the 'file' attribute.
    /Links.asp, line 129
  • Recreate Issue
    To recreate this error:

    <!--#inlcude file=""myfile.asp"-->

    As you can see, we have a double set of Double Qotes on the left side of the file name.
  • Resolve Issue
    To correct this issue:

    <!--#inlcude file="myfile.asp"-->

    The INCLUDE FILE only uses a single set of Double Quotes on each side of the page.asp file.