| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1625 人关注过本帖
标题:求助!各位大侠帮帮忙!!
取消只看楼主 加入收藏
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
 问题点数:0 回复次数:5 
求助!各位大侠帮帮忙!!
向数据库插入数据时显示如下问题,请问如何解决!!!
无法显示网页
试图访问的网页出现问题,无法显示。

--------------------------------------------------------------------------------

请尝试执行下列操作:

单击刷新按钮,或稍后重试。

打开 localhost 主页,然后查找与所需信息相关的链接。
HTTP 错误 500.100 - 内部服务器错误 - ASP 错误
Internet 信息服务

--------------------------------------------------------------------------------

技术信息(用于支持人员)

错误类型:
Microsoft VBScript 编译器错误 (0x800A0401)
语句未结束
/Connections/conn.asp, line 9, column 45
MM_conn_STRING = Provider=Microsoft.Jet.OLEDB.4.0;Data Source="C:\Inetpub\wwwroot\reg.mdb"
--------------------------------------------^


浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

网页:
GET /ren.asp
搜索更多相关主题的帖子: 大侠 
2008-02-22 19:01
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
得分:0 
谢谢你的帮忙!!
直接调用也不可以呀,还是显示同样的错误!
还有其他方法吗?
2008-02-22 19:24
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
得分:0 
谢谢你的帮忙!!
直接调用也不可以呀,还是显示同样的错误!
还有其他方法吗?
2008-02-22 20:38
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
得分:0 
拜师学艺
按照你们说的还是不行呀!可以发个教程吗?
向各位高手拜师学艺!!!!!!
E-MAIL:GAOPFWY@
拜师学艺!!拜师学艺!!!!!!!!!
教教我吧!
上帝!!!!!!!
2008-02-23 21:26
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
得分:0 
代码
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/conn.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
  MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form1") Then

  MM_editConnection = MM_conn_STRING
  MM_editTable = "user"
  MM_editRedirectUrl = "re.asp"
  MM_fieldsStr  = "name|value|mima|value|dizhi|value"
  MM_columnsStr = "name|',none,''|mima|',none,''|dizhi|',none,''"

  ' create the MM_fields and MM_columns arrays
  MM_fields = Split(MM_fieldsStr, "|")
  MM_columns = Split(MM_columnsStr, "|")
  
  ' set the form values
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
  Next

  ' append the query string to the redirect URL
  If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
      MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
      MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
  End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

  ' create the sql insert statement
  MM_tableValues = ""
  MM_dbValues = ""
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
      MM_formVal = MM_emptyVal
    Else
      If (MM_altVal <> "") Then
        MM_formVal = MM_altVal
      ElseIf (MM_delim = "'") Then  ' escape quotes
        MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
      Else
        MM_formVal = MM_delim + MM_formVal + MM_delim
      End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
      MM_tableValues = MM_tableValues & ","
      MM_dbValues = MM_dbValues & ","
    End If
    MM_tableValues = MM_tableValues & MM_columns(MM_i)
    MM_dbValues = MM_dbValues & MM_formVal
  Next
  MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

  If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject(")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_ = MM_editQuery
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

End If
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<link href="p.css" rel="stylesheet" type="text/css" />
</head>

<body>
<form ACTION="<%=MM_editAction%>" METHOD="POST" id="form1" name="form1">
  <label>
  <span id="form1">
  <input name="name" type="text" id="form1" size="15" />
  </span></label>
  <p>
    <span id="form1">
    <label id="form1"><span id="form1">
    <input name="mima" type="text" id="mima" size="15" />
    </span></label>
    </span></p>
  <p>
    <span id="form1">
    <label></label>
    </span>
    <label>    </label>
    <label>
    <input name="dizhi" type="text" id="dizhi" size="15" />
    </label>
  </p>
  <p>
    <label>
    <input type="submit" name="Submit" value="提交" />
    </label>
  </p>

  

  

  <input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>
2008-02-24 08:02
SH123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-2-22
收藏
得分:0 
谢谢你的帮忙!!请帮我查一下
"Provider=Microsoft.Jet.OLEDB.4.0;
Data Source=C:\Documents and Settings\gao\My Documents\userreg.mdb;
Persist Security Info=False"
2008-02-25 21:44
快速回复:求助!各位大侠帮帮忙!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054707 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved