asp初学问题 - Web 开发 / ASP
Microsoft JET Database Engine '80040e07'
标准表达式中数据类型不匹配。
\wwwroot\update.asp, line 20
--------------------------------------------------------------------------------
Host by NetBox Version 2.8 Build 4128
这个是什么问题呀
贴出来20行代码.或update.asp的代码
可能是你数据库和程序中的名称不对。
把相关的代码贴出来看看。
好像是你的sql语句有问题。把sql语句打印出来看看就知道。
标准表达式中数据类型不匹配。
错误就是这个 你的数据库更新语句中的字段更新内容与它的数据类型不符合
比如给一个int字段赋值成了字符串 之类的
是说你程序里写入数据库的数据与数据库设置的类型不不匹配
数据类型不符,一般来说是你的写入语句的问题,
数据类型不符或调取的变量的名称不对或符号有输入错误的
222223
相关问答:
A页面
<table width="200" border="1">
<tr>
<td>1</td>
<td>3</td>
<td><!--#include/top.html#-- ......
<?xml version="1.0"?>
<root>
<status>433</status>
<msg>这个是汉字</msg>
<serialno>123</serialno>
</root>
如何用ASP读取 status值 ......
各位大虾,我做了一个ASP得通讯录,但是除了查询功能好像其他都有问题,其中添加功能如下,能指导一下我哪里出错了吗?
<html>
<head>
<title>无标题文档</title>
</head>
<b ......
3个radioButton
一个Button
一个label
C# code:
protected void Button1_Click(object sender, EventArgs e)
{
string str = null;
RadioButton rdo=(RadioButton)sender;
......