Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.40 KB | None | 0 0
  1.                 <%
  2.                 sql = "SELECT mco_cod,mco_des,mco_diamtst FROM mg_conicita"
  3.                 set rsc = conn.execute(sql)
  4.                 do until rsc.eof
  5.                   %>
  6.                   <option value="<%=rsc("mco_cod")%>"><%=rsc("mco_des")%> Diam. <%=rsc("mco_diamtst")%></option>
  7.                   rsc.movenext
  8.                   <%
  9.                 loop
  10.                 %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement