سلام
من یه combobox توی فرمم دارم که از یک جدول می خونم و پرش می کنم با کد زیر:
حالا می خوام که مقدار ی که الان در combo نشان میده مقداری باشه که از یک db دیگه می خونم یعنی مقدار پیش فرضی که نمایش میده رو نمی دونم باید با چه کدی بنویسم .
من یه combobox توی فرمم دارم که از یک جدول می خونم و پرش می کنم با کد زیر:
کد:
<%set con=server.CreateObject("adodb.connection")
con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+server.mappath("gavahi_gostaresh.mdb")+";Persist Security Info=False"
set rst=server.CreateObject("adodb.recordset")
strsql="select * from Doreh"
rst.open strsql,con,1,3
'rst.AddNew
if rst.RecordCount >0 then
for p=1 to rst.RecordCount %>
<OPTION value="<%=rst.Fields("Shomareh_doreh")%>"><%=rst.Fields("Shomareh_doreh") %><%rst.MoveNext%></OPTION>
<% next
end if
rst.Close
con.Close
'Response.Write (rst.Fields("Shomareh_doreh"))
%>
</SELECT>