Newbie Help :(

Discussion in 'ASP.NET / ASP.NET Core' started by motolazrcom, Sep 22, 2007.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. So i received a complete site from someone in ASP.
    Now i am trying to upload, and this is my first time.
    When i go to my url www.motolazr.com
    i get this error
    Microsoft JET Database Engine error '80004005'

    Selected collating sequence not supported by the operating system.

    /inc/const.asp, line 17


    and this is what the const.asp file contents are...does anyone know what went wrong? The base site works on another url for the person who packaged this site for me...

    <!--#include file='char.asp'-->
    <%
    dim myCache
    set myCache=new Cache
    dim sql,rs,i,founderr,errmsg,succmsg,sqlstr
    dim site_info
    dim Count,page,PageCount,PageSize
    dim url
    url=Request.ServerVariables('HTTP_REFERER')

    myCache.name='config'
    'mycache.makeEmpty
    if myCache.valid then
    site_info=myCache.value
    else
    sql='select site_info from config where id=1'
    set rs=conn.execute(sql)
    if rs.eof and rs.bof then
    response.write '³ÌÐòÔØÈëʧ°Ü£¡'
    response.end
    else
    site_info=split(rs(0),'|')
    myCache.add site_info,dateadd('n',30,now)
    end if
    rs.close
    set rs=nothing
    end if

    %>
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page