1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Broken ASP Form

Discussion in 'C#' started by one8web, Apr 7, 2008.

  1. #1
    Hi--
    I've inherited a older, broken asp form -- have been debugging et al -- but am unable to get it to work .. ie, mail/submit etc..

    The form is at: www.8web.com/forms/CatalogingSlip.asp

    and

    the code is here: www.8web.com/forms/CatalogingSlip_aspsource.asp

    If anyone has any ideas it'd be greatly appreciated --
    Thanks,

    April 7, 2008
    ...................
     
    one8web, Apr 7, 2008 IP
  2. InfoSmith

    InfoSmith Peon

    Messages:
    884
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I like to try:

    first when I submit I got this error:

    Server object error 'ASP 0177 : 800401f3'

    Server.CreateObject Failed

    /forms/CatalogingSlip.asp, line 378

    800401f3

    I will look the source code and tell you how
     
    InfoSmith, Apr 7, 2008 IP
  3. InfoSmith

    InfoSmith Peon

    Messages:
    884
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #3
    ok, reason is simple

    378 line: Set objMail = Server.CreateObject("CDONTS.NewMail")

    you need install the CDONTS component in your server.
    This CDONTS component is use for send email

    Option1: delete the code and do not send email
    Option2: install the component in your server
    Option3: try some test on your server and see what email component is supported, then change the code to suit the component
     
    InfoSmith, Apr 7, 2008 IP