asp的問題新增記錄

2023-02-06 15:50:02 字數 1083 閱讀 3529

1樓:真情_旋律

用insert語句容易出錯,很多時候是缺少空格的問題,你可以試試在&兩邊都加上空格

可以不用insert語句而用rs的addnew方法如下set rs=server.createobject("adodb.recordset")

rs.open "replyarticle",conn,1,3rs.addnew

rs("name")=request("name").....

.....

.....

rs.update

2樓:匿名使用者

你這語句明顯有錯誤麼,你sql寫了兩條,執行的時候怎麼知道執行哪一條呢?

應該這樣寫:

if request("sort")=2 thensql="insert into replytechnic(name,email,qq,content)values('"+name+"','"+email+"','"+qq+"')"

elseif request("sort")=3 thensql="insert into replyarticle(name,email,qq,content)values('"+name+"','"+email+"','"+qq+"')"

end if

conn.execute sql

3樓:鬼火狼煙

insert語句前後不匹配:

sql="insert into replytechnic(name,email,qq,content)values('"+name+"','"+email+"','"+qq+"')"

end if

if request("sort")=3 thensql="insert into replyarticle(name,email,qq,content)values('"+name+"','"+email+"','"+qq+"')"

去掉這2句中的",content" 或者把2句中"')'"都改成"',' ')"

4樓:業情自

我說你最好把+號,換成&

我曾遇到過過—————&有效,而+沒效的時候

急求關於asp的問題,關於新增新聞,寫入資料庫的

dim fsstring strmore fstring replace fstring,fstring replace fstring,fstring replace fstring,chr 32 fstring replace fstring,chr 9 fstring replace fstr...

關於ASP的問題!!求助無助,關於ASP的問題!!求助 無助。

if request action e then if request.form name then call showerr 藥品名稱不能為空!end if set rs server.createobject adodb.recordset sql select from web order r...

請幫我的ASP檔案新增SQL查詢語句,謝謝

sql select from article where format updatetime,yyyy m dd 2008 7 29 sj 2008 7 29 sql select from article where updatetime like 2008 7 29 asp輸出sql查詢的結果...