Konu Başlığı: Firefoxda Pulldown Sorunu
View Single Post
Sponsorlu Bağlantılar
Zoque.Forum
Advertisement
Old 08.02.2007   #2 (permalink)
Python
 
Python's Avatar
 
Üyelik Tarihi: 24.06.2005
Yer: ist
Yaş: 25
Mesaj: 46
Re: Firefoxda Pulldown Sorunu

<select name="Categories" class="pulldown_portfolyo" onchange="JavaScript:OnChange(this.value);">
<%
set RecSet = Connection.Execute("SELECT * FROM Categories ORDER BY CategoryOrderNo")
while not RecSet.Eof
%>
<option
<%
if RecSet("CategoryNo") = CInt(CategoryNo) then
Response.Write " selected"
end if
%> value=<%=RecSet("CategoryNo")%>><%=RecSet("Categor yName")%></option>
<%
RecSet.MoveNext
wend
RecSet.Close
%>
</select>




<script language="JavaScript" type="text/JavaScript">
function OnChange(_l)
{
var location = "portfolyo.ASP?CategoryNo=" + _l;
document.location = location;
}
</script>

böle bi denermisin
Python şu an çevrimdışı   Mesajdan alıntı yaparak yeni bir cevap ekleyin