在ASP裡如何實現讓資料庫內容的名稱欄位以下拉選單選單內容顯示出來呢請朋友幫忙下啊謝謝了

2021-07-05 18:09:18 字數 473 閱讀 4443

1樓:匿名使用者

不就是用sql寫一個查詢語句 然後繫結到 下拉選單不就行了嗎???

然後你真的不會寫! 就hi 我吧! 把你郵箱告訴我!

<%set rsc=server.createobject("adodb.recordset")

sqlc = "select * from name order"

rsc.open sqlc,conn,1,1if rsc.eof and rsc.bof thenresponse.write "請先新增欄目。"

response.end

else

%>姓名<%do while not rsc.eof%>"><%=trim(rsc("name"))%><%

rsc.movenext

loop

end if

rsc.close

set rsc=nothing

%>

asp資料庫連線問題,asp資料庫連線問題

貼那麼多 幹嘛,不說重點 有無出錯提示?有的話,是第幾行?那一行 是哪句?if password rs password then 當你open時查詢記錄為空時,再下面這條判斷密碼的if不成立,則會出錯。中間要加個if rs.eof false and rs.bof false then 把你的連線...

asp 寫入資料庫的問題,asp 資料庫問題

name trim name if len name 0 then name為空!email trim email if len email 0 then email為空!city trim city if len city 0 then city為空!message trim message if...

ASP查詢資料庫,如何實現2次查詢,請教高手

1全部close table 彈出選擇excel檔案對話方塊 cgetfilename getfile xls 文件名稱 匯入if len alltrim cgetfilename 0messagebox 你未選擇任何表檔案!48,提示 else messagebox 如果開啟了相應的excel檔案...